6 lines
206 B
Bash
6 lines
206 B
Bash
|
# show only physical drive sizes.
|
||
|
alias df='df --si | sed -e "/^tmpfs/d" -e "/^udev/d" -e "/\.Private/d" -e "/^overlay/d" -e "/^shm/d" -e "/^devtmpfs/d"'
|
||
|
|
||
|
# show combined size in SI.
|
||
|
alias du="du -sh --si"
|