ansitest/mon1-df-short

8 lines
279 B
Plaintext
Raw Permalink Normal View History

2022-02-22 20:12:01 -06:00
#!/bin/bash
2022-02-22 21:28:17 -06:00
# called by mon1 or topscrn, show in xterm window or text console without getting too wide - useful with zfs
2022-02-22 20:19:11 -06:00
# Save to /usr/local/bin
2022-02-22 20:12:01 -06:00
2022-02-22 20:40:52 -06:00
# Hides some fields and sorts on field 3 (free space)
2022-02-22 20:12:01 -06:00
df -T -h |grep -v tmpfs |awk '{$1="";$3=""; print}' |column -t |sort -h -k 3