Command-Line

特定命令後的選項是什麼意思?

  • September 4, 2016

我如何理解各種選項/標誌的含義?

例如:

  1. uname -a--a這裡表示什麼?

  2. pyang -f--f這裡表示什麼?

我只是想了解是否有一些參考/文件可以說明這些的用法?請澄清。

對於幾乎所有 Linux 命令,我認為最快和最簡單的第一步是在命令後附加“–help”。這為您提供了一個很好的總結,這通常就足夠了。

如果您需要更多詳細資訊,man 命令是不錯的第二選擇。

例如:

$uname --help

Usage: uname [OPTION]...  
Print certain system information.  With no OPTION, same as -s.

 -a, --all                print all information, in the following order,  
                            except omit -p and -i if unknown:  
 -s, --kernel-name        print the kernel name  
 -n, --nodename           print the network node hostname  
 -r, --kernel-release     print the kernel release  
 -v, --kernel-version     print the kernel version  
 -m, --machine            print the machine hardware name  
 -p, --processor          print the processor type (non-portable)  
 -i, --hardware-platform  print the hardware platform (non-portable)  
 -o, --operating-system   print the operating system  
     --help     display this help and exit  
     --version  output version information and exit  

引用自:https://unix.stackexchange.com/questions/307674