Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 295 Bytes

File metadata and controls

21 lines (14 loc) · 295 Bytes

Available Space in Directory

Simple

Not very usable though. Dumps the current directory size and the immediate directories in it.

du -h .

Sort by size

du -h . | sort -rh

Show the top 10 largest directories

du -h . | sort -rh | head -n 10