Answers:
尝试:
tar -czvf directorios.tar.gz folder
一些注意事项:
在手册页中,递归是默认值tar
:
-c, --create
Create a new archive. Arguments supply the names of the files to be archived.
Directories are archived recursively, unless the --no-recursion option is
given.
尽管可以使用--no-recursion
选项关闭...
您需要存档名称后的-f
选项中,正确的顺序是:
tar -c [-f ARCHIVE] [OPTIONS] [FILE...]
^^^^^^^^^^
对于更灵活的命令行(特别是如果您要使用gzip和tar以外的其他压缩实用程序),可以省略-z
选项,而使用-a
或--auto-compress
option允许tar 根据档案后缀自动确定要使用的压缩器:
-a, --auto-compress
Use archive suffix to determine the compression program.
公认的后缀(及其伴随的压缩应用程序)为:
tar很酷:)
参考文献:
-z
选择和使用-a
,使焦油从存档后缀猜测....
-z
,-a
却没有发现任何差异(我在远程服务器上工作)。两种焦油的重量相同。在练习中,我被要求创建一个gzip,然后使用gunzip解压缩它。感谢您的所有帮助!