Created
September 4, 2014 13:11
-
-
Save nlamirault/b69b15b05bb025567d38 to your computer and use it in GitHub Desktop.
Find file which not have a string
This file contains hidden or 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
$ for i in `find . -name "*.py"`; do if ! grep -q "unicode" $i ; then echo $i ; fi ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment