Skip to content

Instantly share code, notes, and snippets.

@mrmrs
Created September 9, 2013 21:02
Show Gist options
  • Save mrmrs/6501486 to your computer and use it in GitHub Desktop.
Save mrmrs/6501486 to your computer and use it in GitHub Desktop.
Find count of a given css declaration.
# where sass is the directory you want to search and 'float: left' is the declaration you want to search for.
find sass -print0 | xargs -0 grep -ir 'float: left' ./ | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment