du -h -c -s * — shows human readable total sizes of all subdirectories and a overall total
Posted by jpluimers on 2018/01/15
Inspired by [WayBack] linux command line: du — how to make it show only total for each directories – Stack Overflow
du -h -s -c *
This displays the human readable (-h) total (-s) with a grand total (-c) of all subdirectories (*).
–jeroen






Leave a comment