Hacker News new | ask | show | jobs
by t_hozumi 5326 days ago
du -sh ./D*

  872K	./Desktop
  78M	./Documents
  3.2G	./Downloads
1 comments

I would add | sort -h here
if you don't have "sort -h" (mine doesn't do it), you can also use "du -m", which gives file sizes in megabytes -- pretty reasonable. (then "sort -n")