I'm trying to set up a script to automatically download all of the latest and greatest Cascading from their canonical url.
On Ubuntu, the following commands work fine: # wget -i http://files.cascading.org/load/2.0/latest.txt # wget -i http://files.cascading.org/multitool/2.0/latest.txt The wget dereferences the links without any issues and downloads the latest versions of Cascading load and multitool. However, the same commands on RedHat yield the following failures: # 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? Info: # rpm -qf /usr/bin/wget wget-1.11.4-2.el5_4.1 # lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: RedHatEnterpriseServer Description: Red Hat Enterprise Linux Server release 5.6 (Tikanga) Release: 5.6 Codename: Tikanga # uname -a Linux gcompute1.rhel 2.6.18-238.5.1.el5 #1 SMP Mon Feb 21 05:52:39 EST 2011 x86_64 x86_64 x86_64 GNU/Linux
