Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Last active December 17, 2015 02:08
Show Gist options
  • Save kovshenin/5533273 to your computer and use it in GitHub Desktop.
Save kovshenin/5533273 to your computer and use it in GitHub Desktop.
Exploring the themes directory.
# Find themes using Open Graph tags.
ack '"og:[^"]+"' | perl -n -e '/^([^\/]+)/ && print "$1\n"' | uniq
# Find themes using the word "SEO" in their theme description
ack 'Description: .*\bSEO\b' | perl -n -e '/^([^\/]+)/ && print "$1\n"' | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment