Created
January 18, 2018 19:03
-
-
Save brunneis/e9536495737c991a156bef145a08f984 to your computer and use it in GitHub Desktop.
Delete all files containing a string (for files with very long lines)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SEARCH_PATH="." | |
MAX_CHARS_PER_FILENAME=50 | |
grep -r "string" $SEARCH_PATH | cut -c 1-$MAX_CHARS_PER_FILENAME | cut -d ':' -f 1 | xargs rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment