Skip to content

Instantly share code, notes, and snippets.

@xNekOIx
Created February 24, 2017 15:05
Show Gist options
  • Save xNekOIx/6fe3a13fea773cd48920ee4bdd1ac882 to your computer and use it in GitHub Desktop.
Save xNekOIx/6fe3a13fea773cd48920ee4bdd1ac882 to your computer and use it in GitHub Desktop.
download images from css file urls
awk '/url\(https:\/\/url-path-to-resource-if-needed\/[^)]+.svg\)/{ print $0 }' ../some-style.css | sed 's/.*(\(.*\)).*/\1/p' | sort -u | xargs wget
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment