fd: Rework command to be more idiomatic

Co-authored-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
Rohit Goswami 2020-12-10 01:50:01 +05:30 committed by GitHub
parent f30daa76ef
commit fbee1ff8bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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