Use fd if available
This commit is contained in:
parent
cebda88f7b
commit
5cdd11b655
|
@ -13,7 +13,11 @@ alias :q="exit"
|
|||
alias rget="rsync -rvP --append-verify --inplace"
|
||||
alias 7zu="7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on"
|
||||
|
||||
alias f="noglob find . -iname"
|
||||
if command -v fd >/dev/null; then
|
||||
alias f="fd"
|
||||
else
|
||||
f() { noglob find . -iname "*${*}*" }
|
||||
fi
|
||||
|
||||
alias sudo="sudo "
|
||||
alias S='sudo $(history -n -1)'
|
||||
|
|
Loading…
Reference in a new issue