[root@localhost ~]# find.-size 1207 #但用find查找1207,是什么也找不到的 也就是说,find 命令的默认单位不是字节。如果不写单位,那么 find 命令是按照 512 Byte 来进行査找的。我们看看 find 命令的帮助。 [root@localhost ~]# man find -size n...
英文原意:search for files in a directory hierarchy. 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中查找文件。 命令格式 [root@localhost ~]# find 搜索路径 [选项] 搜索内容 find 是比较特殊的命令,它有两个参数: 第一个参数用来指定搜索路径; 第二个参数用来指定搜索内容。 而且find命令的...
find 命令的基本信息如下:命令名称:find。英文原意:search for files in a directoryhierarchy.所在路径:/bin/find。执行权限:所有用户。功能描述:在目录中查找文件。 命令格式 find path -option [ -print ] [ -exec -ok command ] {} \; 例如 # find . -name "*.c" -name之前的.可加可不加 # find...
英文原意:search for files in a directory hierarchy。 所在路径:/bin/find。 执行权限:所有用户。 功能描述:在目录中搜索文件。 2、按照文件名搜索 [root@localhost ~ ] # find 搜索路径 [选项] 搜索内容 选项: -name:按照文件名搜索 -iname:按照文件名搜索,不区分文件名大小写 -inum:按照inode号搜索 #1....
directory ├── file1 ├── file2 ├── sub-dir1 │ ├── file1 │ ├── file2 │ └── file3 └── sub-dir2 ├── file2 └── sub-subdir1 └── file13directories,7files 2. 默认的 find 命令会列出该目录下的所有文件: ...
find命令:find命令用于在指定目录及其子目录中查找文件和文件夹。使用find命令时,可以结合其他参数来过滤结果,并只显示文件夹,例如: “find /path/to/directory -type d “这将在指定目录及其子目录中查找并显示所有文件夹。 du命令:du命令用于显示指定目录下的文件夹和文件的磁盘使用情况。使用du命令时,可以结合其...
$ 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 /path/to/directory -maxdepth 1 -name "file.txt"组合多个条件:可以使用逻辑运算符来组合多个条件,例如,AND (-a) 和 OR (-o)。例如,搜索既满足文件名条件又满足文件类型条件的文件:find /path/to/directory -name "example.txt" -a -type f排除特定目录:如果你想要搜索一个目录但排除其中的特定...
出来一大堆 ... [root@localhost ~]# find /etc/ -name "*conf*" -a -name "*config*" ...
一、查找文件或目录Find 格式 find 查找的范围 类型 查找数据 1.1、常用查找类型 查找类型 关键字 说明按名称查找 -name 根据目标文件的名称进行查找,允许使用“*”及“?”通配符按文件大小查找 -size 根据目标文件的大小进行查找,一般使用“+”、“-”号设置...