I'm using this command to determine which directory is eating my disk.
du -sk * | sort -n
How can I get human readable result form du
for file sizes? I've checked man
and all it have is -k
flag which turns byte results to kilobyte results. I need results in gigabytes
man
(manual) pages.man du
– h3rrmiller Jul 01 '13 at 19:49ls
related to this? – user Jul 01 '13 at 21:27