How to list disk usage in Linux shell

A very simple technique to list disk usage by top level directory in the linux shell:-

 PHP |  copy code |? 
1
du -sh `find -maxdepth 1`

Note the back single quote which you normally find top left of your keyboard.

And you can change the maxdepth as required ..