thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Thu Aug 04, 2005 11:29 am Post subject: Split a large file |
|
|
to split type:
user@host:~#split -b 1m largefile smallfile
This will split up 'largefile' in to files of 1mb named 'smallfileaa', 'smallfileaab' etc
If you specify '-b 1400k' the size will be 1,4mb
to combine type:
user@host:~#cp smallfile[a-c] > largefile |
|