List 50 largest files

From James's Wiki
Revision as of 17:03, 6 October 2018 by Ractive (talk | contribs) (Created page with "This will find the 50 largest files and sort by size, excluding directories /proc and /media sudo find / -type f \( -path ./proc -o -path /media \) -prune -o -exec du -Sh {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This will find the 50 largest files and sort by size, excluding directories /proc and /media


sudo find / -type f \( -path ./proc -o -path /media \) -prune -o -exec du -Sh {} + | sort -rh | head -n 50