|
|
|
|
|
by justinsaccount
3486 days ago
|
|
Have you tried du -macx ~ | egrep '^[0-9]{2}' | sort -n
egrep filter for files at least 10m ends up being a nice speed up, otherwise you end up spending most of the time sorting all the tiny files to the top while up writing hundreds of megabytes of /tmp/sortXXXX files in the process. |
|