Hi doc, Am Wednesday 11 July 2012 schrieb doc: > # wget -i http://files.cascading.org/load/2.0/latest.txt > http://files.cascading.org/load/2.0/latest.txt: No such file or directory > No URLs found in http://files.cascading.org/load/2.0/latest.txt. > # wget -i http://files.cascading.org/multitool/2.0/latest.txt > http://files.cascading.org/multitool/2.0/latest.txt: No such file or > directory No URLs found in > http://files.cascading.org/multitool/2.0/latest.txt. > > Am I doing something wrong? I there a newer version of wget that I should > be using? Is there a elegant workaround?
I guess, that old version of wget does not support external files with -i. As a workaround, split it up like this: wget http://files.cascading.org/load/2.0/latest.txt wget -i latest.txt Of course you could also download the files onto your Ubuntu, and scp it over to your Redhat. Regards, Tim
