Find

From DevOps Notebook
Revision as of 11:49, 7 December 2019 by MilosZ (talk | contribs) (Created page with "== Find largest files in given location == <pre> find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5 </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Find largest files in given location

find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5