I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1 My question is: Is there any way to join all of this or Do I have to download that again? Hope an answer thanks to all manny -- "Nuestra recompensa se encuentra en el esfuerzo y no en el resultado. Un esfuerzo total es una victoria completa". Mahatma Gandhi (@ @) |------o00o-(_)-o00o----------| |Manuel Enrique Ch?vez Manzano| |manuel864 at gmail.com | |manny at cmc.cfg.sld.cu | |GNU/LINUX User | |#424754 | |Using CentOS 5 | |-------ooo--ooo--------------| -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.centos.org/pipermail/centos/attachments/20071016/f993d595/attachment-0004.sig>
> SetupDxLabelMakerSoftonic.exe > SetupDxLabelMakerSoftonic.exe.1 > SetupDxLabelMakerSoftonic.exe.1.1 > > My question is: Is there any way to join all of this or Do I have to > download that again?The last one (exe.1.1) is what you want -- it got redownloaded from the byte zero. To avoid this, use wget with options. $ wget --help|grep part -c, --continue resume getting a partially-downloaded file. Rgds, R-C Get news delivered with the All new Yahoo! Mail. Enjoy RSS feeds right on your Mail page. Start today at http://mrd.mail.yahoo.com/try_beta?.intl=ca
--- Manuel Enrique Chavez Manzano <manny at cmc.cfg.sld.cu> wrote:> I've been downloading a software for a friend with > wget, but as my > connexion to internet is not so good, wget > downloaded in three parts by > example: > SetupDxLabelMakerSoftonic.exe > SetupDxLabelMakerSoftonic.exe.1 > SetupDxLabelMakerSoftonic.exe.1.1 > > My question is: Is there any way to join all of this > or Do I have to > download that again? > > Hope an answer > thanks to all > manny > -- > "Nuestra recompensa se encuentra en el esfuerzo y no > en el resultado. > Un esfuerzo total es una victoria completa". > Mahatma > Gandhi > (@ @) > |------o00o-(_)-o00o----------| > |Manuel Enrique Ch?vez Manzano| > |manuel864 at gmail.com | > |manny at cmc.cfg.sld.cu | > |GNU/LINUX User | > |#424754 | > |Using CentOS 5 | > |-------ooo--ooo--------------| > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos >Stupid question, but are you planning on running that software on Linux? Steven Get your Art Supplies @ www.littleartstore.com
On 10/16/07, Manuel Enrique Chavez Manzano <manny at cmc.cfg.sld.cu> wrote:> I've been downloading a software for a friend with wget, but as my > connexion to internet is not so good, wget downloaded in three parts by > example: > SetupDxLabelMakerSoftonic.exe > SetupDxLabelMakerSoftonic.exe.1 > SetupDxLabelMakerSoftonic.exe.1.1 > > My question is: Is there any way to join all of thisHi Manuel, Does the cat command say something to you ? maybe you could do cat SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1 > SetupDxLabelMakerSoftonic.exe.tmp and then rm SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1 and then mv SetupDxLabelMakerSoftonic.exe.tmp SetupDxLabelMakerSoftonic.exe and then try to see if that work :) or Do I have to> download that again?as other had mentioned you can use the -c option next time ;) Cheers, al.