Skip to content

Instantly share code, notes, and snippets.

@dewomser
Last active February 7, 2025 14:59
Show Gist options
  • Save dewomser/c65cf42d6195d816141952476cace22e to your computer and use it in GitHub Desktop.
Save dewomser/c65cf42d6195d816141952476cace22e to your computer and use it in GitHub Desktop.
Linux maintenance with bash : files are bigger, smaller or the same

Bigger than 2 GB

find $HOME -type f -size +2G  -exec ls -lh {} \;

Smaller than 1 Byte

find $HOME -type f -size -1c  -exec ls -lh {} \;
@dewomser
Copy link
Author

dewomser commented Aug 4, 2024

empty

find $HOME -type f -empty -exec ls -lh {} ;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment