Skip to content

Instantly share code, notes, and snippets.

@parisminton
Created November 7, 2015 16:59
Show Gist options
  • Save parisminton/aaa7e42888d7ba923eee to your computer and use it in GitHub Desktop.
Save parisminton/aaa7e42888d7ba923eee to your computer and use it in GitHub Desktop.
Loop through filenames and operate on the ones that *don't* match a pattern
for i in $(ls ~/wherevs/*.png); do
if [ ! $(echo $i | ack whatevs) ]; then
rm -P $i
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment