Logo Background

Unix Find Big Large Files

  • If you found that one of your mount point hitting 100% of utilization space, then you can navigate to the mount point and execute the command as below: -

    find . -size +1000000000c -exec ls -l {} \;

    This command will find any files that larger than 1GB and list in using ls -l command

Leave a Comment