no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | tech:linux:disk_space [2014/11/15 15:13] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Get Disk Space ====== | ||
+ | One liner to get total, used and available disk space | ||
+ | <code bash> | ||
+ | df -Pk|awk '{ sum2 += $2 ; sum3 += $3 ; sum4 += $4} END { print sum2/ | ||
+ | </ | ||