mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
fd: Rework command to be more idiomatic
Co-authored-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
parent
f30daa76ef
commit
fbee1ff8bd
1 changed files with 1 additions and 3 deletions
|
@ -34,9 +34,7 @@ alias -g P="2>&1| pygmentize -l pytb"
|
||||||
|
|
||||||
alias dud='du -d 1 -h'
|
alias dud='du -d 1 -h'
|
||||||
alias duf='du -sh *'
|
alias duf='du -sh *'
|
||||||
if ! which fd >/dev/null 2>%1; then
|
(( $+commands[fd] )) || alias fd='find . -type d -name'
|
||||||
alias fd='find . -type d -name'
|
|
||||||
fi
|
|
||||||
alias ff='find . -type f -name'
|
alias ff='find . -type f -name'
|
||||||
|
|
||||||
alias h='history'
|
alias h='history'
|
||||||
|
|
Loading…
Reference in a new issue