Skip to content

Instantly share code, notes, and snippets.

@k4rtik
Created December 10, 2011 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k4rtik/1453994 to your computer and use it in GitHub Desktop.
Save k4rtik/1453994 to your computer and use it in GitHub Desktop.
The bash script I created for simultaneously downloading videos of MIT's SICP course. - October 2010
#!/bin/bash
baseurl="http://www.archive.org/download/MIT_Structure_of_Computer_Programs_1986/lec"
urlend="b_512kb.mp4"
log="log_b"
for i in {5..7}
do
nohup wget -c "${baseurl}$i${urlend}" > "${log}$i" &
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment