Skip to content

Instantly share code, notes, and snippets.

@dlion
Created January 20, 2013 02:51
Show Gist options
  • Select an option

  • Save dlion/4576399 to your computer and use it in GitHub Desktop.

Select an option

Save dlion/4576399 to your computer and use it in GitHub Desktop.
Allows to download a file with wget using multi-threading.
function wget_thread()
{
for i in {1..4}; do
wget -rnp -c -N $1 &
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment