To find large files on the command line:
find / -type f -size +10240k -exec ls -lh {} \; | awk ‘{ print size $5 “, location ” $9}’
This example files anything over 10MB, and outputs the size and path to the command line
To find large files on the command line:
find / -type f -size +10240k -exec ls -lh {} \; | awk ‘{ print size $5 “, location ” $9}’
This example files anything over 10MB, and outputs the size and path to the command line