Skip to content

Instantly share code, notes, and snippets.

@felipem775
Created September 25, 2019 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipem775/0e29999afa22926903599f41a46cfdcd to your computer and use it in GitHub Desktop.
Save felipem775/0e29999afa22926903599f41a46cfdcd to your computer and use it in GitHub Desktop.
Busca caracteres fuera del ascii
# Busca caracteres fuera del ascii
find -name '*.py' -print0 |xargs -0 grep -P '[^\x00-\x7f]' > /tmp/non-ascii.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment