Skip to content

Instantly share code, notes, and snippets.

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 reidbaker/eb938d078e52d778ffca to your computer and use it in GitHub Desktop.
Save reidbaker/eb938d078e52d778ffca to your computer and use it in GitHub Desktop.
# find all xml files `find res -name "*.xml"`
# then serch them for a # followed by 0-f 6 times (will find either rgb or argb)
find res -name "*.xml" -exec grep -Hn "#[0-9a-fA-F]\{6\}" {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment