Created
March 31, 2017 19:37
-
-
Save muhammednagy/47f357f7c429cf9a6fe80431ee778e70 to your computer and use it in GitHub Desktop.
download bunch of files quietly from a file
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/bash | |
LINKS=$1 | |
LOG=$2 | |
wget --input-file=$LINKS --output-file $LOG | |
# usage | |
# chmod +x fasterdownloadwithwget.sh | |
# ./fasterdownloadwithwget.sh links_file log_file | |
# go and have fun ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment