![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| join (pls help on join command) | summer_cherry | Shell Programming and Scripting | 1 | 12-31-2007 02:19 AM |
| extract segment | mpang_ | Shell Programming and Scripting | 1 | 01-11-2007 10:33 PM |
| Network Access on Different Segment | HASM | IP Networking | 3 | 12-07-2006 09:01 AM |
| Segment Fault | zhshqzyc | High Level Programming | 9 | 04-07-2006 08:47 AM |
| Extract data segment using awk?? | apalex | Shell Programming and Scripting | 1 | 07-27-2004 03:13 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
I have a huge folder that I need to down load.
I have compressed it into a tar archive (+7 gb). I now need to split the archive into segments of 100 mb. I have found that I can make the spril using: split -b 100m hugearchive.tar This will create a ton of segments that I can easily move one by one (download with ftp or move to another server via ssh) But how do I join the segments into a working tar archive again? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
use cat part* > filename
Normally in Unix u can join files by cat .
keep all parts of file in one directory and after splitting ur file parts name will be like xaa,xab,xac etc if u have not used any specific file name cat x* > filename it will create file in the same directory and u have to delete ur file parts , make sure that u have suffiecient space in file system uday |
|||
| Google The UNIX and Linux Forums |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|