我学习了一些 Ubuntu 命令,有些命令可以带一些参数。我想问两个问题。
首先(更一般):所有使用相同缩写(如“-N”)的参数是否都用于相同的任务?
第二(更具体):如果是,-N 参数代表什么,它的作用是什么?如果不是,-N 参数代表什么,它对gzip -N
命令的作用是什么?
答案1
每个命令都有自己的参数。
您可以通过运行来查看它们是什么man command
。
man gzip
-N --name
When compressing, always save the original file name and time
stamp; this is the default. When decompressing, restore the
original file name and time stamp if present. This option is
useful on systems which have a limit on file name length or when
the time stamp has been lost after a file transfer.