空字符
2014-12-02 23:09
centos 6.0 tar -zxvf test.tar.gz -c /tmp 不能压缩到指定目录
tar: You may not specify more than one '-Acdtrux' or '--test-lable' option
Try 'tar --help' or 'tar --usage' for more information
指定压缩目录直接在文件名前面加目录就行了 。
tar -zcvf /tmp/test.tar.gz /root
意为将/root目录压缩成名为test.tar.gz的压缩包,并存放在/tmp目录下。
解压才需要加-C
tar -zxvf test.tar.gz -C /tmp/
大写-C
Linux达人养成计划 I
399342 学习 · 3791 问题
相似问题