centos 6.0 tar -zxvf test.tar.gz -c /tmp 不能壓縮到指定目錄
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
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
2014-12-02
舉報
2016-09-14
指定壓縮目錄直接在文件名前面加目錄就行了 。
tar -zcvf /tmp/test.tar.gz /root
意為將/root目錄壓縮成名為test.tar.gz的壓縮包,并存放在/tmp目錄下。
解壓才需要加-C
2016-05-30
?tar -zxvf test.tar.gz -C /tmp/
2014-12-02
大寫-C