I created a script to download some iso files.
This is the script:
#!/bin/bash
lynx -dump http://www.mydownloadsite.com/Downloads.htm | egrep -o http://www.mydownloadsite.com/images/iso_.*[A-Z].iso | xargs -n1 wget -d -P ~/Downloads/ISO/ -U
Everytime i run this script wget starts downloading the first iso but hangs after downloading about 2% (not everytime the same amount of bytes).
When is use the same wget commandline directly, everything goes fine. Checked the download in different ways, but server sided everything seems ok.