"giovanni_re" <[email protected]> writes: > When trying to do a continue "-c" wget for a partially downloaded file, wget > wouldn't do the continue because it got the "302 Moved Temporarily" (so i > surmise). > > How can it be told "if you get the "moved temporarily" message, just do a > proper "-c" to the filename i gave you in the wget command, loading from the > moved location, & storing into the filename I gave you, not storing onto the > redirected file name. ? > > > == Ex: > wget -c > http://www.archive.org/download/clug-2010-05-11-super-computing-business/2010-05-11_brian-modra_super-computing-business_512kb.mp4 > --2010-06-11 15:45:33-- > http://www.archive.org/download/clug-2010-05-11-super-computing-business/2010-05-11_brian-modra_super-computing-business_512kb.mp4
you can specify the output file with -O: wget -c http://www.archive.org/download/clug-2010-05-11-super-computing-business/2010-05-11_brian-modra_super-computing-business_512kb.mp4 -O 2010-05-11_brian-modra_super-computing-business_512kb.mp4 Cheers, Giuseppe
