Created
June 25, 2019 08:08
-
-
Save anselal/b69714a124f6e9a92f0f600823dbbeaf to your computer and use it in GitHub Desktop.
Download T-shirt images from https://www.reasonstousebitcoin.com/
This file contains 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
#!/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