Skip to content

Instantly share code, notes, and snippets.

@feymartynov
Created February 27, 2013 11:23
Show Gist options
  • Save feymartynov/5047244 to your computer and use it in GitHub Desktop.
Save feymartynov/5047244 to your computer and use it in GitHub Desktop.
Find cyryllic words
grep -r '[а-я]' * | grep -v '//' | grep -v '#' | grep -v ' \* ' | grep -v 'jscalendar' | egrep -o '^[^:]+' | grep -v '^\s' | grep -v 'Binary' | uniq -c | sort -nr | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment