Created
September 9, 2013 21:02
-
-
Save mrmrs/6501486 to your computer and use it in GitHub Desktop.
Find count of a given css declaration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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