To find files larger than 100MB:
find . -type f -size +100M
Code language: Bash (bash)
If you want the current dir only:
find . -maxdepth 1 -type f -size +100M
Code language: Bash (bash)
Team Leader, JavaScript Lover, WordPress Engineer
To find files larger than 100MB:
find . -type f -size +100M
Code language: Bash (bash)
If you want the current dir only:
find . -maxdepth 1 -type f -size +100M
Code language: Bash (bash)
Leave a Reply