Posts Tagged tips
Disk usage in command line for Linux & Mac
Quick way to get disk usage for current folder in command line for Linux:
du * -h –max-depth=0 | sort -h
For Mac:
du -hm -d 1 | sort -n
Free disk space can be checked in both systems the same way:
df -h