aliases: Don't overshadow fd

This commit is contained in:
Rohit Goswami 2020-08-07 14:35:58 +00:00 committed by GitHub
parent 079e7bb5e0
commit f30daa76ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,9 @@ alias -g P="2>&1| pygmentize -l pytb"
alias dud='du -d 1 -h'
alias duf='du -sh *'
alias fd='find . -type d -name'
if ! which fd >/dev/null 2>%1; then
alias fd='find . -type d -name'
fi
alias ff='find . -type f -name'
alias h='history'