访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux look命令

时间:2019-11-23

linux命令大全_linux命令分类大全_linux命令大全 root

Linux 命令大全 Linux 命令大全

Linux look命令用于查询单词。

linux命令大全_linux命令大全 root_linux命令分类大全

look指令用于英文单字的查询。您仅需给予它欲查询的字首字符串linux命令大全,它会显示所有开头字符串符合该条件的单字。

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

linux命令分类大全_linux命令大全_linux命令大全 root

参数说明:

为了查找在testfile文件中以字母L开头的所有的行linux命令大全,可以输入如下命令:

linux命令大全 root_linux命令分类大全_linux命令大全

look L testfile 

原文件testfile中的内容如下:

linux命令分类大全_linux命令大全 root_linux命令大全

$ cat testfile #查看testfile 文件内容  
HELLO LINUX!  
Linux is a free unix-type opterating system.  
This is a linux testfile!  
Linux test 

在testfile文件中使用look命令查找以"L"开头的单词,结果如下:

$ look L testfile                              #查找以“L”开头的单词  
Linux is a free unix-type opterating system.   #第二行以“L”开头,列出全句  
Linux test                                     #第四行以“L”开头,列出全句 

Linux 命令大全

 上一个教程:Linux xargs命令详解