传递给 tar 命令的不同参数有哪些?

传递给 tar 命令的不同参数有哪些?

当我们解压任何 tarBall 文件时参数的用途是什么-xvzf以及通过命令传递的其他参数是什么?

我发现很多书上都提到了这一点,但却找不到任何东西。

答案1

只需man tar在终端中输入tar命令手册即可。
您也可以在线查看http://man.cx/tarhttp://linuxcommand.org/man_pages/tar1.html(感谢@Rinzwind)

-xvzf 的含义是

-x --extract = extract files from an archive
-v, --verbose = verbosely list files processed
-z, --gzip = gzipped files eg. for tar.gz packages
-f, --file ARCHIVE = use archive file or device ARCHIVE

答案2

tar手册页中 -

-x, --extract, --get

      extract files from an archive

-v, --verbose

      verbosely list files processed

-z, --gzip, --gunzip, --ungzip

      filter the archive through gzip

-f, --file [HOSTNAME:]F

      use archive file or device F (default "-", meaning stdin/stdout)

man tar在终端中输入以访问 tar 的手册页。

答案3

正如前面的答案所提到的,手册页将为您的问题提供详细的答案。

此外,您可以通过参数访问命令信息,其help格式比手册页提供的格式略为简洁。通过键入,tar --help您可以查找 x、v、z 和 f 参数。

答案4

如果您在 Linux 终端上,您可以输入“man tar”查看 tar 的手册页,其中列出了 tar 的所有命令行开关及其功能。您也可以在 Google 上搜索 man tar 查看同一页面。(手册页非常适合学习 Linux 上的命令)

-xvzf 表示:-

x extract-从档案中提取文件

v 详细 – 列出所有正在处理的文件

z uncompress - 在这种情况下,或者如果创建 tar,则压缩

f 使用文件(您正在解压缩的文件)

....但是 tar 还有更多开关。看一看。

相关内容