find /path/to/directory -name "*keyword*" 上述命令将在指定的目录(/path/to/directory)下搜索文件名包含关键字(keyword)的文件。通配符*用于表示任意字符或字符序列。 如果,要在当前目录下查找文件名包含"example"的文件,可以运行以下命令: find . -name "*example*" 该命令将递归地搜索当前目录及其子目录,并...
[root@localhost redis-6.2.10]# find . -name "*.h" -exec grep -rin '16384' {} -H \;./src/cluster.h:8:#define CLUSTER_SLOTS16384 可以看到显示出,16384 这个字符串出现在./src/cluster.h文件对应的第 8 行。 具体命令语法如下: find PATH OPTIONS -execcommand{}\; 其中-exec参数表示需要执行...
按权限查找:-perm[root@localhost ~]# find /bin/ -perm 755 # 等于 0755 权限的文件或目录[root@localhost ~]# find /bin/ -perm -644 #-perm -644 至少有 644 权限的文件或目录 在当前目录下(包含子目录),删除所有txt文件find ./ -name"*.tx...
51CTO博客已为您找到关于linux find -name 命令的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及linux find -name 命令问答内容。更多linux find -name 命令相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
1. `-ls`:类似于`ls -l`命令的输出格式,显示文件的详细信息。2. `-exec`:执行指定的命令,例如`find /path/to/dir -name "*.txt" -exec cat {} \;`将输出所有扩展名为`.txt`的文件的内容。3. `-ok`:在执行指定操作之前,询问用户是否确认执行。4. `-execdir`:在当前目录下执行指定的命令,例如`...
[root@dazhu200 ~]# find ./ -nouser -a -nogroup [root@dazhu200 ~]# 11. find查找后的动作 11.1. -exec 格式:find ... -exec 命令{} \; 命令:几乎所有命令都可执行但是find不支持别名 [root@dazhu200 ~]# find ./ -type f -name "nu*" -exec cp {} /tmp \; [root@dazhu200 ~]...
1、find是用来查找文件或目录。首先看一下最简单的用法直接根据路径来查找文件。命令详解:find +(路径)+(文件名或目录名),注意不要在 /(根)目录下查找文件,最好在查找的时候精确一点。2、“-name”命令详解:find + (路径) -name (文件名或目录名)。3、参数“*”,“*”可以匹配...
3. 为 find 命令指定 expression 以筛选出特定的文件 代码语言:javascript 复制 $ find directory-name file2 directory/sub-dir1/file2 directory/file2 directory/sub-dir2/file2 4. 为 find 命令指定特殊的 action(此处 -delete 表示删除搜索结果) ...