How to find out disk usage of each sub-directory of the current or root directory (Linux, Unix, Centos, Redhat etc)
Q: I would like to know the current disk usage of each subdirectory of the root directory, which command should I use?
du -hs /*
Q: How about current directory?
Tags: Linux
du -hs ./*