In response to "Kelly Jones" <kelly.terry.jo...@gmail.com>:

> Can I split a large (4G+) bzip2 file into smaller bzip2 files? Notes:
> 
>  % Obviously, 'split' won't work for 2 reasons:
> 
>   % Each chunk won't have the BZIP2 header
> 
>   % 'split' will cut the file inside a bzip2 "block", rendering the
>   first/last blocks of each file unreadable.

You can split it.  You'll just have to rejoin it before you can
uncompress it.  Clever use of cat and pipes will do that without
intermediate files.

You could also split the file prior compression.  Then you could
uncompress each part separately, _then_ rejoin the parts.

-- 
Bill Moran
http://www.potentialtech.com
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to