![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| awk continue | anhtt | Shell Programming and Scripting | 3 | 03-11-2008 12:08 PM |
| continue example | xramm | Shell Programming and Scripting | 7 | 07-03-2007 04:10 AM |
| Continue Script when File Found | Jose Miguel | Shell Programming and Scripting | 7 | 11-07-2006 08:43 PM |
| Will the continue function work ???? | kamlesh_p | Shell Programming and Scripting | 2 | 10-12-2005 09:27 AM |
| continue the suspended jobs | killerserv | UNIX for Advanced & Expert Users | 6 | 01-10-2002 03:09 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
Unless the file transfer software that you are using supports continuation of interrupted transfers, there is really no way that you can continue from where you were cut off.
Just one thing... never tried it.. if it is a large text file, you could check how many lines have been transferred to the remote end and send across the remaining lines using tail. But if it is an archive/binary/something similar, there is no hope. |
|
||||
|
You could try using the split command. On the source system, do:
$ split -b [bytes of xfered file] [filename] You'll get two files. scp the second one over and then, hmm, try cat'ing them together into a single file. You should try it with a much smaller file first to make sure it works for you of course. I tried it with a small compressed file and it worked for me Sun to Linux. split a small util into two, scp each part over and then cat them into the util again. Carl |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|