Skip to content

Instantly share code, notes, and snippets.

@maliMirkec
Last active May 27, 2016 09:31
Show Gist options
  • Save maliMirkec/f5c70703b931d2504ea16d2a731bb424 to your computer and use it in GitHub Desktop.
Save maliMirkec/f5c70703b931d2504ea16d2a731bb424 to your computer and use it in GitHub Desktop.
Find and exclude files on Ubuntu
// http://www.cyberciti.biz/faq/find-command-exclude-ignore-files/
find . -type f \( -iname "*.jpg" ! -iname "*1024*" ! -iname "*800*" ! -iname "*768*" ! -iname "*300*" ! -iname "*150*" \)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment