英文原意:search for files in a directory hierarchy. 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中查找文件。 命令格式 [root@localhost ~]# find 搜索路径 [选项] 搜索内容 find 是比较特殊的命令,它有两个参数: 第一个参数用来指定搜...
英文原意:search for files in a directory hierarchy. 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中查找文件。 命令格式 [root@localhost ~]# find 搜索路径 [选项] 搜索内容 find 是比较特殊的命令,它有两个参数: 第一个参数用来指定搜索路径; 第二个参数用来指定搜索内容。 而且find命令的...
比如 named.conf 文件,从它的文件扩展名“.conf”可以判断这是一个配置文件,那么它应该在/etc 目录内,此时可以使用下面的命令: find /etc -name named.conf 1. (3)根据部分文件名查找法。 有时仅知道某个文件包含有 abdd 这 4 个字符,那么要查找系统中所有包含这 4 个字符的 文件,可以输入下面的命令: ...
find命令是一种精确查找工具,可以查找精确查找文件的位置,单相对于locate命令的模糊查找来说,速度要慢了许多。 find - search for files in a directory hierarchy find [path...] [expression] path:是指文件的路径,比如/var,/etc,/tmp等工作目录; expression: 选项:比如-user,-root,-size,-perm 条件:本次...
一、find命令常用功能 1、find命令的基本信息如下。 命令名称:find。 英文原意:search for files in a directory hierarchy。 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中搜索文件。 2、按照文件名搜索 [root@localhost ~ ] # find 搜索路径 [选项] 搜索内容 ...
或者可以通过find来查询 find / -type f -size +1G -exec du -h {} \;从效率上来说,find要比...
$ find/opt-typef-name"*conf*" 1. 2. 2)仅查找文件夹(Find Only Folders) We may need only to find the folder. We will specify the type like below a directory. 我们可能只需要找到该文件夹。 我们将在目录下指定类型。 #在/opt目录中查找所有名称中包含home的文件夹 ...
find - search for files in a directory hierarchy find命令用来在指定目录下查找文件。 任何位于参数之前的字符串都将被视为欲查找的目录名。 如果使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与文件。并且将查找到的子目录和文件全部进行显示。
find.-name file.txt 将当前目录及其子目录下所有文件后缀为.c的文件列出来: # find . -name "*.c" 将当前目录及其子目录中的所有文件列出: # find . -type f 查找/home 目录下大于 1MB 的文件: find/home-size+1M 查找/var/log 目录下在 7 天前修改过的文件: ...
Find -- search for files in a directory hierarchy // 在目录层次结构中搜索文件 locate --list files in databases that match a pattern // 列出与模式匹配的数据库中的文件 updatedb -- update a file name database // 更新文件名数据库 xargs -- build and execute command lines from standard input...