8 lines
200 B
Bash
8 lines
200 B
Bash
# Show only physical drives info.
|
|
alias df="/usr/bin/df --si | sed -e '1p' -e '/^\/dev\//!d'"
|
|
|
|
# Show combined size in SI.
|
|
# Current dir by default.
|
|
# Usage: du [DIRS]
|
|
alias du="/usr/bin/du -sh --si"
|