The following will list the top 10 files by size in a dir
find /path/to/dir/ -printf '%s %p\n'| sort -nr | head -10
The k option shows file size in kb
find /path/to/dir/ -printf '%k %p\n'| sort -nr | head -10
Heisenberg - Digital Alchemist, Software Architect, Automation Specialist and Mechanical Engineer.
The following will list the top 10 files by size in a dir
find /path/to/dir/ -printf '%s %p\n'| sort -nr | head -10
The k option shows file size in kb
find /path/to/dir/ -printf '%k %p\n'| sort -nr | head -10
No comments:
Post a Comment
Note: only a member of this blog may post a comment.