$ split -b 1024m large_file.tbz chunk-
This will produce the following files:
-rwxr--r-- 1 owner group 1073741824 Jan 28 19:00 chunk-aa
-rwxr--r-- 1 owner group 134987776 Jan 28 19:00 chunk-ab
And to assemble them back into one piece, it's just as easy:
$ cat chunk-* >> large_file.tbz
--DRH
No comments:
Post a Comment