Blogger Information
Blog 15
fans 0
comment 0
visits 10369
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Linux-05查找命令
移动用户-7131521
Original
575 people have browsed it

1.grep命令

grep是一种强大的文本搜索工具 ,可以使用正则表达式将文本以行的形式展现出来

2.find命令

在目录结构中搜索文件,并对搜索结果执行指定的操作,find 默认搜索当前目录及其子目录,并且不过滤任何结果(也就是返回所有文件),将它们全都显示在屏幕上。

  1. 1find . -name "*.txt" -ls //查找当前结构目录下以.txt为结尾的文件并展示详细列表信息
  2. 2】更多使用信息可以使用 --help查看

3.whereis命令

whereis命令是定位可执行文件、源代码文件、帮助文件在文件系统中的位置。这些文件的属性应属于原始代码,二进制文件,或是帮助文件。

  1. 1whereis ls //源代码 可执行文件的找出来并返回结果

4.which命令

which命令的作用是在PATH变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果。

  1. 1which php //主要定位语言的环境变量路径,并返回结果
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post