请教C Shell中tar的用法

请教C Shell中tar的用法

本人新手,刚开始学,请教 CSH中tar的用法,望各位指点。
最好能给出例子说明,谢谢!      
引用:
最初由 wdl36 发布
[B]本人新手,刚开始学,请教 CSH中tar的用法,望各位指点。
最好能给出例子说明,谢谢! [/B]
tar跟shell有关系么?!
引用:
0057 解压小全(bjchenxu)
tar xvfj example.tar.bz2
tar xvfz example.tar.gz
tar xvfz example.tgz
tar xvf example.tar
unzip example.zip
tar -jvxf some.bz,就是把tar的zvxf 改成jvxf
zip/tar rh8下有一个图形界面的软件file-roller可以做这件事。另外可以用unzip *.zip解开zip文件,unrar *.rar解开rar文件,不过unrar一般系统不自带,要到网上下载。
引用自:http://www.douzhe.com/linux/      
多谢楼上的指点!

我刚刚开始学C shell,有个作业就是要把\testprog下的每个公司的产品,按照产品类别分作成一个档案,以方便作备份。
例如:2个公司的目录分别是\testprog\company1和\testprog\company2
对于每个company下又有产品目录\product1,\product2,产品目录下存放的是产品的信息。
要求作成:company_product_PG_yyyymmdd.tar

您看该怎么作呢?望指点......      
don't be too greedy !      
接受批评!
已经作出来了,供大家参考:
set tardate = `date +$Y$m$d`
tar cvg $company"_"$product"_PG_"$tardate.tar /folder      
good !