Check size of a directory on linux
I needed to check the size of a directory on linux, make sure that my colleague has sync'd up fully a file. I managed to find this: https://unix.stackexchange.com/questions/185764/how-do-i-get-the-size-of-a-directory-on-the-command-line
du --human-readable --summarize <dirname>
du -sh <dirname>
Member discussion