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