CURL Big files download
Jul 07
It is not so trivial task but i do not know till now how to make this!
1 2 3 4 5 6 7 8 9 10 11 12 | while ! curl -C - -O 'http://download.parallels.com/GA/Parallels%20Desktop%203186%20Mac%20en.dmg'; do sleep 10; done Also WGET wget -c http://example.org/file.iso Or MANUAL with CURL $ curl -r 0-350000000 http://mirror.sov.uk.goscomb.net/linuxmint.com/stable/7/LinuxMint-7.iso -o LinuxMint-7 & $ curl -r 350000001- hhttp://mirror.sov.uk.goscomb.net/linuxmint.com/stable/7/LinuxMint-7.iso -o LinuxMint-7_2 & $ cat LinuxMint-7* > LinuxMint-7.iso. |