> Here is the syntax i am using :
> cd (my directory) ; tar -cvf file.tar *.csv | gzip --best > file.tar.gz;

you want to do this:

tar -cvf - *.csv | gzip --best > file.tar.gz;


_______________________________________________
Bug-tar mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-tar

Reply via email to