Skip to content

Instantly share code, notes, and snippets.

@rodrisan
Forked from antonydevanchi/README.md
Created October 29, 2020 01:52
Show Gist options
  • Save rodrisan/1ced2a0d4ccb932c08e1f085ae7777c9 to your computer and use it in GitHub Desktop.
Save rodrisan/1ced2a0d4ccb932c08e1f085ae7777c9 to your computer and use it in GitHub Desktop.
Download all images from undraw.co/illustrations
# npm -g i svgexport
# #ff6347 — change color
svgexport hiking_d24r.svg hiking_d24r.png "svg *[fill=\"#6c63ff\"]{fill: #ff6347}"
# oneliner
for ((i=1;i<30;i++)); do curl -s https://undraw.co/illustrations/load/$i | pup2 'a[data-src] json{}' | jq '.[] .children[] .children[] .children[] .src' -r -M | xargs -i aria2c {} -d ./imgs; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment