1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 07:50:40 +01:00

fix(common-aliases): don't overshadow duf if installed (#11112)

This commit is contained in:
Roman Danyk
2022-08-23 20:23:42 +03:00
committed by GitHub
parent 3668ec2a82
commit b05d8c3be6
2 changed files with 7 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ alias -g NUL="> /dev/null 2>&1"
alias -g P="2>&1| pygmentize -l pytb"
alias dud='du -d 1 -h'
alias duf='du -sh *'
(( $+commands[duf] )) || alias duf='du -sh *'
(( $+commands[fd] )) || alias fd='find . -type d -name'
alias ff='find . -type f -name'