Created
February 24, 2017 15:05
-
-
Save xNekOIx/6fe3a13fea773cd48920ee4bdd1ac882 to your computer and use it in GitHub Desktop.
download images from css file urls
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
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