Add utility alias for pydf

This commit is contained in:
Guillaume Subiron 2016-03-18 08:29:57 +01:00 committed by Kaleb Elwert
parent cf7d3cffbd
commit 81b41d2367
2 changed files with 7 additions and 2 deletions

View file

@ -105,7 +105,7 @@ Aliases
### Resource Usage
- `df` displays free disk space using human readable units.
- `df` displays free disk space using human readable units (aliases to `pydf`, if installed).
- `du` displays disk usage using human readable units.
- `top` displays information about processes (aliased to `htop`, if installed).
- `topc` displays information about processes sorted by CPU usage (`htop` not

View file

@ -142,7 +142,12 @@ elif (( $+commands[wget] )); then
fi
# Resource Usage
alias df='df -kh'
if (( $+commands[pydf] )); then
alias df=pydf
else
alias df='df -kh'
fi
alias du='du -kh'
if (( $+commands[htop] )); then