Skip to content

Instantly share code, notes, and snippets.

@nle-odoo
Created April 7, 2015 09:17
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 nle-odoo/e353b22f89031ced21a5 to your computer and use it in GitHub Desktop.
Save nle-odoo/e353b22f89031ced21a5 to your computer and use it in GitHub Desktop.
% find -name "*.css" | while read f; do x=$(cat "$f" | LANG=C grep --color=always '[^ -~[:space:]]\+'); if [ "$x" != "" ]; then echo "$f => $x"; fi; done;
./addons/gamification/static/src/css/gamification.css => content: "•";
content: "✓";
./addons/website_blog/static/src/css/website_blog.css => content: " →";
./addons/base_setup/static/src/css/base_setup.css => content:"—";
./addons/board/static/src/css/dashboard.css => content: "×";
./addons/web/static/src/css/base.css => content: "▸ ";
content: "▾ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment