nix/module/common/bash/module/Disk.sh
2024-03-04 03:04:57 +03:00

12 lines
205 B
Bash

# Show only physical drives info.
function pdf() {
df --si | sed -e '1p' -e '/^\/dev\//!d'
}
# Show total size in SI.
# Current dir by default.
# Usage: tdu [DIRS]
function tdu() {
du -sh --si "${@}"
}