Skip to content

Instantly share code, notes, and snippets.

@anselal
Created June 25, 2019 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anselal/b69714a124f6e9a92f0f600823dbbeaf to your computer and use it in GitHub Desktop.
Save anselal/b69714a124f6e9a92f0f600823dbbeaf to your computer and use it in GitHub Desktop.
Download T-shirt images from https://www.reasonstousebitcoin.com/
#!/bin/sh
for i in `seq 100`;
do
reason="reason-$i"; curl -s https://www.reasonstousebitcoin.com/shop/t-shirt/$reason/ | grep woocommerce-product-gallery__image | cut -d\" -f 8 | xargs wget -O $reason.jpg;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment