英文原意:search for files in a directory hierarchy. 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中查找文件。 命令格式 [root@localhost ~]# find 搜索路径 [选项] 搜索内容 find 是比较特殊的命令,它有两个参数: 第一个参数用来指定搜...
find 不仅可以按照 atmie、mtime、ctime 来査找文件的时间,也可以按照 amin、mmin 和 cmin 来査找文件的时间,区别只是所有 time 选项的默认单位是天,而 min 选项的默认单位是分钟。 按照权限搜索 在find 中,也可以按照文件的权限来进行搜索。权限也支持 [+/-] 选项。我们先看一下命令格式。 [root@localhost ...
find 命令的基本信息如下:命令名称:find。英文原意:search for files in a directoryhierarchy.所在路径:/bin/find。执行权限:所有用户。功能描述:在目录中查找文件。 命令格式 find path -option [ -print ] [ -exec -ok command ] {} \; 例如 # find . -name "*.c" -name之前的.可加可不加 # find...
比如 named.conf 文件,从它的文件扩展名“.conf”可以判断这是一个配置文件,那么它应该在/etc 目录内,此时可以使用下面的命令: find /etc -name named.conf 1. (3)根据部分文件名查找法。 有时仅知道某个文件包含有 abdd 这 4 个字符,那么要查找系统中所有包含这 4 个字符的 文件,可以输入下面的命令: ...
一、find命令常用功能 1、find命令的基本信息如下。 命令名称:find。 英文原意:search for files in a directory hierarchy。 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中搜索文件。 2、按照文件名搜索 [root@localhost ~ ] # 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 -- 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...
或者可以通过find来查询 find / -type f -size +1G -exec du -h {} \;从效率上来说,find要比...
find - search for files in a directory hierarchy Synopsis find[-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression] Description This manual page documents the GNU version offind. GNUfindsearches the directory tree rooted at each given file name by evaluating the given expres...