> Is there a preferred way to append a text file to the end of gzipped
> file? the api of File::Slurp append_file is nice, but doesn't work
> with gzip file...

The concatenation of two gzip'ed files is a valid gzip file, which
when ungzip'd will produce a single file containing the contents of
the first followed by the contents of the second -- so just gzip the
stuff you want to append and concatenate the files together.

j.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to