[UPDATE][SHELL] Remove 'du' and 'df' aliases

They do more harm than good.
This commit is contained in:
Bruno BELANYI 2020-03-03 12:24:09 +01:00
parent 1b12a8e1c9
commit d5c6d39b2a

View file

@ -13,14 +13,12 @@ alias fgrep='fgrep --color=auto'
alias diff='diff --color=auto'
# Better defaults
alias df='df -ahiT --total'
alias cp='cp -i'
alias more='less'
#alias mkdir='mkdir -v'
alias userlist='cut -d: -f1 /etc/passwd'
alias fhere='find . -name '
alias free='free -mt'
alias du='du -ach | sort -h'
alias ps='ps auxf'
alias psgrep='ps aux | grep -v grep | grep -i -e VSZ -e'
alias wget='wget -c'