14,954
edits
| Line 339: | Line 339: | ||
</pre> | </pre> | ||
[https://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/ How To Find Largest Top 10 Files and Directories On Linux / UNIX / BSD - nixCraft] Output example: | [https://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/ How To Find Largest Top 10 Files and Directories On Linux / UNIX / BSD - nixCraft] {{exclaim}} It may costs time to return the result if there are too many file under the specified path. Output example: | ||
<pre> | <pre> | ||
# du -a -BM /var/ | sort -n -r | head -n 10 | # du -a -BM /var/ | sort -n -r | head -n 10 | ||