mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
# To sort directories/files by size
|
|
du -sk *| sort -rn
|
|
|
|
# To show cumulative humanreadable size
|
|
du -sh
|