ℹ️ to change the default color of the images replace #6c63ff with whatever color you want.
originally from: https://gist.github.com/antonydevanchi/56be1c739e47c72e11ddabf853ddc6db
ℹ️ to change the default color of the images replace #6c63ff with whatever color you want.
originally from: https://gist.github.com/antonydevanchi/56be1c739e47c72e11ddabf853ddc6db
# oneliner | |
for ((i=1;i<55;i++)); do curl -s https://undraw.co/api/illustrations\?page\=$i | jq '.illustrations[] | (.title, .image)' -r -M | sed -e 's/\(.*\)/\1/; s/\ /_/g'|xargs -n2 -L2 bash -c 'curl --silent --output ./imgs/${1,,}.svg $2 > /dev/null' bash;done; |