Bash script to scrap images from multiple pages of website
#!/bin/bash | |
for i in {1..436} | |
do | |
wget -r -l1 -A.jpg https://www.example.com/events/view/1545?page=$i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment