Skip to content

Instantly share code, notes, and snippets.

@mludi
Created October 16, 2018 12:29
Show Gist options
  • Save mludi/05af7de3572c39543eeea8156f03ee12 to your computer and use it in GitHub Desktop.
Save mludi/05af7de3572c39543eeea8156f03ee12 to your computer and use it in GitHub Desktop.
Remove all files in a folder, but exclude given
#!/bin/bash
ls | grep -v -E '(1|2)' | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment