Skip to content

Instantly share code, notes, and snippets.

@calvinf
Created June 8, 2011 01:00
Show Gist options
  • Save calvinf/1013574 to your computer and use it in GitHub Desktop.
Save calvinf/1013574 to your computer and use it in GitHub Desktop.
Search CSS files for every background-image URL and output unique URLs in a list
ack -o -h --nogroup --css 'url\((.*)\)' --output "\$1" | ack -o "^['\"](.*)['\"]$" --output "\$1" --passthru | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment