Skip to content

Instantly share code, notes, and snippets.

@stekan
Last active May 20, 2016 03:38
Show Gist options
  • Save stekan/fc0ff0dfd5df29c5a4ebb69320728b7d to your computer and use it in GitHub Desktop.
Save stekan/fc0ff0dfd5df29c5a4ebb69320728b7d to your computer and use it in GitHub Desktop.
Download Files with wget
#!/bin/bash
INPUT=urls.txt
while read val
do
URL=`echo ${val}|awk '{ print $1 }'`
wget ${URL}
done < ${INPUT}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment