find /home -size -512k 查小于512k的文件 find /home -links +2 查硬连接数大于2的文件或目录 find /home -perm 0700 查权限为700的文件或目录 find /tmp -name tmp.txt -exec cat {} \; find /tmp -name tmp.txt -ok rm {} \; find / -amin -10 # 查找在系统中最后10分钟访问的文件 fi...
find /usr -type f -mtime 2检索 /usr 下两天前被修改过的文件 如果觉得-mtime等选项以天为单位时间有点长,还可以使用-mmin,-amin,-cmin三个选项: find /usr -type f -mtime +50 -mtime -100检索 /usr 下 50 到 100 天之前修改过的文件 find /usr -type f -mtime 2 -amin 5检索 /usr 下两天...
6. Find 参数 exec 详解: 实例7:ls -l 命令放在 find 命令的-exec 选项中 实例8:在目录中查找更改时间在 n 日以前的文件并删除它们 实例9:在目录中查找更改时间在 n 日以前的文件并删除它们,在删除之前先给出提示 实例10:-exec 中使用 grep 命令 实例11:查找文件移动到指定目录 实例12:用 exec 选项执行...
-exec COMMAND ; -exec COMMAND {} + -ok COMMAND ; -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ; Valid arguments for -D: exec, opt, rates, search, stat, time, tree, all, help Use '-D help' for a description of the options, or see find(1) Please see also the doc...
find命令用于查找文件和目录,任何位于参数之前的字符串都将被视为欲查找的目录。 find可以指定查找条件如名称,类型,时间,文件大小,权限和所有者查找,针对多个条件进行与或非的逻辑运算。我们可以控制find的查找的行为,还可以和其他命令组合使用。 find find . ...
1. find find是最常见和最强大的查找命令,你可以用它找到任何你想找的文件。 find的使用格式如下: $ find <指定目录> <指定条件> <指定动作> - <指定目录>: 所要搜索的目录及其所有子目录。默认为当前目录。 - <指定条件>: 所要搜索的文件的特征。
Command 1 ; Command 2 首先运行Command1,然后运行Command2 Command 1 && Command 2 当Command1运行成功并结束,然后运行Command2 Command 1 || Command 2 当Command1运行失败时才运行Command2 文件 bin (binaries)存放二进制可执行文件 sbin (super user binaries)存放二进制可执行文件,只有root才能访问 ...
The find command is one of the most useful Linux commands, especially when you're faced with the hundreds and thousands of files and folders on a modern computer. As its name implies, find helps you find things, and not just by filename....
find [路径] -type [文件类型]:按文件类型查找文件,如f表示普通文件,d表示目录。 grep:在文件中搜索匹配的行。 grep [模式] [文件]:在文件中搜索包含指定模式的行。 tar:归档工具,用于创建和提取归档文件。 tar -czvf [归档文件名.tar.gz] [文件或目录]:创建gzip压缩的tar归档文件。
find find . find . -print This is similar to running an ls command with the -la options. If you want the output of the above commands to contain the full pathnames, perhaps for a backup, you would need to specify the full path for the starting directory: ...