Get folder size in Linux command line
Determining the size of a directory in Linux, command line:
du -sh folder
- s - display only a total
- h - in human readable format
Links
- How do I get the size of a directory on the command line? unix.stackexchange.com/questions/185764/how-do-i-get-the-size-of-a-directory-on-the-command-line
- du(1) - Linux man page: linux.die.net/man/1/du
Operating systems
- Linux