– 使用逻辑或运算符(-o或||):find /path/to/search -name “file1” -o -name “file2” 6. 执行操作: – 打印文件名:find /path/to/search -name “filename” -print – 执行其他命令:find /path/to/search -name “filename” -exec command {} \; – 删除文件:find /path/to/search -na...
[root@localhost ~]# find.-not -name cangls #在当前目录下搜索文件名不是cangls的文件 其他选项 Linux中find常见用法示例 ·find path -option [ -print ] [ -exec -ok command ] {} \; find命令的参数; pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 -print: fi...
find path-name [ -options] [-print –exec -ok 命令 {} \; ]参数说明path-name:find命令查找的目录路径,例如可以用“.”表示当前目录,用“/”表示系统根目录。 -options:find命令的限定条件,例如,文件类型-type,修改时间-mtime,属主-user,大小-size,名字-name,不包含-prune -print:将搜索结果输出到标准...
$ find $HOME -type f -name "*.mp3" -delete Search-and-delete-files-find-command-linux 注意:上面是破坏性命令,执行它时要小心。 (23) 查找最大和最小的文件 To find largest and smallest file, we will combine sort command with find command & if we further want to list top three of those...
find pathname -options [-print -exec -ok ...] 2、find命令的参数; pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 -print: find命令将匹配的文件输出到标准输出。 -exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为'command' { } \;,注意...
1,查找文件命令:find 用法如下: find path -option [ -print ] [ -exec -ok command ] {} \; path: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 -print: find命令将匹配的文件输出到标准输出。 -exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为'...
For example, deletefile1.txtfile with: find /home/sara/Documents -name "file1.txt" -delete The command has no output. Find Empty Files and Directories Use thefindcommand to search for empty files and directories on your system. The-emptyoption is used to locate files and directories that hav...
[root@zorrozou-pc0 zorro]# find /etc/ -newermc /etc/passwd 这个用法的原型是:find /etc/ -newerXY file。其中Y表示的是跟后面file的什么时间比较,而X表示使用查找文件什么时间进行比较。-newermc就是拿文件的modify time时间跟file的change time进行比较。X和Y可以使用的字母为: ...
用法: ::-exec COMMAND {} ;:: find . -name "*.c" -exec cat {} \; > all_c.txt 解释一下,{}代表每个找到的文件,后面要用;结尾,但是分号在shell中有特殊含义,所以需要转义。 然后,find命令的全部输出只是一个数据流,所以不需要使用>>
$ find . -name runme -execdir /bin/rm {} \; find命令除了默认打印之外还有很多选项,有些可以使你的文件搜索更精确,但谨慎一点总是好的。 在Facebook和LinkedIn上加入 Network World 社区来进行评论。 via:https://www.networkworld.com/article/3233305/linux/using-the-linux-find-command-with-caution.htm...