Directory File Size on Linux

 To find Mount points size on the servers. : df -k

To find current directory size : du -sh

To find the current subdirectories and file sizes of current directory: du -h

To find the current subdirectories and file sizes of current directory with sort: du -h |sort -h


Comments