How to gzip multiple image files into one .gz?

2012-05-14 Thread joe
Is there a way to gzip multiple image files into a single .gz file? I found this example online, but it did not work for me. gzip -c *.jpg output.gz --- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe,

Re: How to gzip multiple image files into one .gz?

2012-05-14 Thread James Finstrom
Why not use tar. tar -czvf images.tar.gz image1 image2 image3 James Finstrom Rhino Equipment http://rhinoequipment.com On Mon, May 14, 2012 at 11:32 AM, j...@actionline.com wrote: Is there a way to gzip multiple image files into a single .gz file? I found this example online, but it did

RE: How to gzip multiple image files into one .gz?

2012-05-14 Thread Carruth, Rusty
Or simply tar -czvf output.gz *.jpg, to replace the gzip example below. Why not use tar. tar -czvf images.tar.gz image1 image2 image3 On Mon, May 14, 2012 at 11:32 AM, joe wrote: Is there a way to gzip multiple image files into a single .gz file? I found this example online, but it

Re: How to gzip multiple image files into one .gz?

2012-05-14 Thread Matt Graham
On Mon, May 14, 2012 at 11:32 AM, j...@actionline.com wrote: Is there a way to gzip multiple image files into a single .gz file? From: James Finstrom jfinst...@rhinoequipment.com tar -czvf images.tar.gz image1 image2 image3 gzip , like bzip2 , works on *one file*. If you want to put multiple