Created
August 7, 2019 18:41
-
-
Save rochacbruno/22708064874952de29a7d5bcd8c9bfc5 to your computer and use it in GitHub Desktop.
Download Multiple Sequential Images on Bash
This file contains hidden or 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
| # A web server having files named /file00001.jpg to /file00138.jpg | |
| BASE_URL=https://xyzkonjdnfsdf.rackcdn.com/file00 | |
| for i in $(seq 001 138); do wget $BASE_URL$(printf "%.3d" "$i").jpg ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment