Skip to content

Instantly share code, notes, and snippets.

@craigbeck
Last active December 22, 2015 11:58
Show Gist options
  • Save craigbeck/6469187 to your computer and use it in GitHub Desktop.
Save craigbeck/6469187 to your computer and use it in GitHub Desktop.
find files by pattern but don't look in certain directories
#!/bin/sh
# as @nobody
find . -not \( -path */archive -prune \) -name *-Linux-*.tar.gz
#!/bin/sh
# as @nobody
find . -not \( -path */archive -prune \) -name *-Linux-*.tar.gz -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment