Skip to content

Instantly share code, notes, and snippets.

@muhammednagy
Created March 31, 2017 19:37
Show Gist options
  • Save muhammednagy/47f357f7c429cf9a6fe80431ee778e70 to your computer and use it in GitHub Desktop.
Save muhammednagy/47f357f7c429cf9a6fe80431ee778e70 to your computer and use it in GitHub Desktop.
download bunch of files quietly from a file
#!/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