Linux look命令

Linux 命令大全 Linux 命令大全

Linux look命令用于查詢單詞。

look指令用于英文單字的查詢。您僅需給予它欲查詢的字首字符串,它會(huì)顯示所有開頭字符串符合該條件的單字。

語法

look [-adf][-t<字尾字符串>][字首字符串][字典文件]

參數(shù)說明

  • -a 使用另一個(gè)字典文件web2,該文件也位于/usr/dict目錄下。
  • -d 只對(duì)比英文字母和數(shù)字,其余一慨忽略不予比對(duì)。
  • -f 忽略字符大小寫差別。
  • -t<字尾字符串> 設(shè)置字尾字符串。

實(shí)例

為了查找在testfile文件中以字母L開頭的所有的行,可以輸入如下命令:

look L testfile 

原文件testfile中的內(nèi)容如下:

$ cat testfile #查看testfile 文件內(nèi)容  
HELLO LINUX!  
Linux is a free unix-type opterating system.  
This is a linux testfile!  
Linux test 

在testfile文件中使用look命令查找以"L"開頭的單詞,結(jié)果如下:

$ look L testfile                              #查找以“L”開頭的單詞  
Linux is a free unix-type opterating system.   #第二行以“L”開頭,列出全句  
Linux test                                     #第四行以“L”開頭,列出全句 

Linux 命令大全 Linux 命令大全