mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 00:04:57 +08:00
4 lines
No EOL
147 B
Bash
Executable file
4 lines
No EOL
147 B
Bash
Executable file
#df -h | awk '$NF=="/"{printf "Disk Usage: %d/%dGB (%s)\n", $3,$2,$5}'
|
|
|
|
# show only free space
|
|
df -h | awk '$NF=="/"{printf " %dGB\n", ($2-$3)}' |