标签:
文件搜索命令 : find
命令名称:find
命令所在路径:/bin/find
执行权限:所有用户
语法:find [搜索范围] [匹配条件]
功能描述:文件搜索
-name 按文件名来搜索
$ find /etc -name init
在目录/etc中查找文件名为init
文件名模糊查询find /etc -name *init*
文件名以init开头的模糊查询
find /etc -name init*
文件名以init开头的后面有三个字符的文件 (?匹配单个字符)
find /etc -name init???
-iname 不区分大小写
-size 根据文件大小来查找
$ find / -size +204800
在根目录下查找大于100MB的文件
+n 大于 -n 小于 n 等于
-user 根据所有者来查找
$ find /home -user shenchao
在根目录下查找所有者为shenchao的文件
-group 根据所属组查找
$ find /etc -cmin -5
在/etc下查找5分钟内被修改过属性的文件和
目录
-amin 访问时间 access
-cmin 文件属性 change
-mmin 文件内容 modify
$ find /etc -size +163840 -a -size -204800
在/etc下查找大于80MB小于100MB的文件
-a 两个条件同时满足 -a 表示 and
-o 两个条件满足任意一个即可
$ find /etc -name inittab -exec ls -l {} \;
在/etc下查找inittab文件并显示其详细信息
-exec/-ok 命令 {} \; 对搜索结果执行操作
-type 根据文件类型查找
f 文件 d 目录 l 软链接文件
-inum 根据i节点查找
文件搜索命令 : locate
命令名称:locate
命令所在路径:/usr/bin/locate
执行权限:所有用户
语法:locate 文件名
功能描述:在文件资料库中查找文件
范例:$ locate inittab
locate -i INITTAB (-i不区分大下写)
更新资料库 updatedb (tmp 目录下的文件不收录)
文件搜索命令 : which
命令名称:which
命令所在路径:/usr/bin/which
执行权限:所有用户
语法:which 命令
功能描述:搜索命令所在目录及别名信息
范例:$ which ls
文件搜索命令 : whereis
命令名称:whereis
命令所在路径:/usr/bin/whereis
执行权限:所有用户
语法:whereis [命令名称]
功能描述:搜索命令所在目录及帮助文档路径
范例:$ whereis ls
文件搜索命令 : grep
命令名称:grep
命令所在路径:/bin/grep
执行权限:所有用户
语法:grep -iv [指定字串] [文件]
功能描述:在文件中搜寻字串匹配的行并输出
-i 不区分大小写
-v 排除指定字串
范例:# grep mysql /root/install.log
标签:
原文地址:http://www.cnblogs.com/faunjoe88/p/5686855.html