Skip to content

Instantly share code, notes, and snippets.

@igponce
Created September 27, 2017 14:45
Show Gist options
  • Save igponce/827d49acff2e7861c102bc21fd6f9abc to your computer and use it in GitHub Desktop.
Save igponce/827d49acff2e7861c102bc21fd6f9abc to your computer and use it in GitHub Desktop.
Find recipes

File Sizes

Find empty files: find . -size 0

Files greater than 700M: (does not fit CDROM) find . -size +700M

Permissions

Find exactly files with 'mode': find . -perm mode

Find files with all bits of 'mode' set: find . -perm -mode find . -perm a+x

Find files which are readable (maybe acls or NFS mounts make this impossible):

find . -readable find . -writable find . -executable

Ownership

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