Skip to content

Instantly share code, notes, and snippets.

@nlamirault
Created September 4, 2014 13:11
Show Gist options
  • Save nlamirault/b69b15b05bb025567d38 to your computer and use it in GitHub Desktop.
Save nlamirault/b69b15b05bb025567d38 to your computer and use it in GitHub Desktop.
Find file which not have a string
$ 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