页面

2009-02-11

file splitting and joining

'split' can split a large file into pieces of small one:
$ split --bytes=1024 large.mkv prefix_string
'cat' can rejoin the pieces again:
$ cat prefix_string* > large.mkv
So option 'prefix_string' is necessary for simplifying operation.

没有评论: