Skip to content

Instantly share code, notes, and snippets.

@gregmercer
Created August 10, 2012 23:11
Show Gist options
  • Save gregmercer/3318891 to your computer and use it in GitHub Desktop.
Save gregmercer/3318891 to your computer and use it in GitHub Desktop.
Linux: find - find excluding some extensions
find /sites/default/files -type f -not -name "*.gif" -not -name "*.jpg" -not -name "*.css" -not -name "*.JPG" -not -name "*.jpeg" -not -name "*.js" -not -name "*.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment