mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 00:48:36 +01:00
5 lines
103 B
Text
5 lines
103 B
Text
# To sort directories/files by size
|
|
du -sk *| sort -rn
|
|
|
|
# To show cumulative humanreadable size
|
|
du -sh
|