Bin*_*nod 5 command-line extract tar
最近我在尝试在 Ubuntu 14.04 中安装基于 Linux 的软件 Quantum Espresso 5.2.0 时遇到问题。源是一个压缩的 tar.gz 文件。我输入了以下命令来提取其中包含的文件:
tar - zxvf espresso-5.2.0.tar.gz
Run Code Online (Sandbox Code Playgroud)
但终端显示以下消息:
tar: You must specify one of the '-Acdtrux', '--delete' or '--test-label' options
Try 'tar --help' or 'tar --usage' for more information.
Run Code Online (Sandbox Code Playgroud)
我遵循了建议,但无法解决问题。有人可以帮我解决这个问题吗?
使用man tar更多信息,命令应该是这样的:
tar -zxvf espresso-5.2.0.tar.gz
Run Code Online (Sandbox Code Playgroud)
-和之间没有空格zxvf
欲了解更多详情。