I have the following code:
#!/usr/bin/env python
import os
os.system("wget -directory-prefix=myDir/1 URL1")
os.system("wget -directory-prefix=myDir/2 URL2")
os.system("wget -directory-prefix=myDir/3 URL3")
Between each call the script does "hang", when I press ctrl-c the script continues to work. Any ideas on how to troubleshoot this?
Edit: I now edited my question entirely.