Skip to content

Instantly share code, notes, and snippets.

@maletor
Created August 25, 2012 23:36
Show Gist options
  • Save maletor/3472308 to your computer and use it in GitHub Desktop.
Save maletor/3472308 to your computer and use it in GitHub Desktop.
Print for deletion non ascii
for f in **/*.rb
do
echo $f;
tr -d '\000-\177' < $f;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment