| |
Miscellaneous: Split a large file(last edit: 2000-11-22)
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
Click here to go back to the index.
|