how to check folder size in terminal code example
Example 1: terminal list with folder dimension
$ du -sh */
788K foo/
500K bar/
931K baz/
Example 2: check folder size in linux terminal
du -sh /home/user/
Example 3: terminal get folder size windows
# On PowerShell:
cd "your folder path"
ls -r | measure -sum Length