尝试提取 tar 文件时出错:您必须指定“-Acdtrux”或“--test-label”选项之一

尝试提取 tar 文件时出错:您必须指定“-Acdtrux”或“--test-label”选项之一

当我尝试提取 cmake 时出现错误:

tar - zxvf cmake-3.4.0.tar.gz

tar: You must specify one of the `-Acdtrux' or `--test-label'  options
Try `tar --help' or `tar --usage' for more information.

答案1

去除空格处之间:-z

tar -zxvf cmake-3.4.0.tar.gz

这应该可行。

相关内容