Last active
August 29, 2015 14:27
-
-
Save Phlow/76c15bd828ec29791c02 to your computer and use it in GitHub Desktop.
Batch Download via Terminal with explanation
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
# | |
# 1. Download file › batch_download.sh | |
# 2. Edit file › URLs for wget to download | |
# 3. With -O you can rename the output file | |
# 4. Change permissions of file $ chmod 755 batch_download.sh | |
# 5. Start the batch $ ./batch_download.sh | |
# | |
wget https://archive.org/compress/kpu008 -O kpu008.zip | |
wget https://archive.org/compress/kpu009 -O kpu009.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment