确切的说,是控制expression中的options/tests/actions的运算方式,无论是options、tests还是actions,它们都可以给定多个,例如find /tmp -type f -name "*.log" -exec ls '{}' ; -print,该find中给定了两个test,两个action,它们之间从前向后按顺序进行评估,所以如果想要改变运算逻辑,需要使用操作符来控制。 注意...
find ./ -size 0 -exec rm {} \; 删除文件大小为零的文件 (还可以以这样做:rm -i `find ./ -size 0` 或 find ./ -size 0 | xargs rm -f &) 为了用ls -l命令列出所匹配到的文件,可以把ls -l命令放在find命令的-exec选项中:find . -type f -exec ls -l { } \; 在/logs目录中查找更...
find命令還有-atime和-ctime 選項,但它們都和-m time選項。 -nogroup 查找無有效所屬組的文件,即該文件所屬的組在/etc/groups中不存在。 -nouser 查找無有效屬主的文件,即該文件的屬主在/etc/passwd中不存在。 -newer file1 ! file2 查找更改時間比文件file1新但比文件file2舊的文件。 -type 查找某一...
Linux Command Line(Linux 命令行)是 Linux 操作系统的一个重要组成部分,它允许用户通过命令行界面与系统进行交互,执行各种操作和任务。在 Linux Command Line 中,用户可以使用各种命令来操作文件和目录、安装软件、管理进程等等。 红帽(Red Hat)是一家知名的 Linux 发行版厂商,其旗下的 Red Hat Enterprise Linux(R...
cat file1 #从第一个字节开始正向查看文件的内容 tac file1 #从最后一行开始反向查看一个文件的内容 more file1 #查看一个长文件的内容 less file1 #类似于 'more' 命令,但是它允许在文件中和正向操作一样的反向操作 head -2 file1 #查看一个文件的前两行 tail -2 file1 #查看一个文件的最后两行 tail...
在Linux 命令中,find用于在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名,其支持按名称查找、按正则表达式查找、按文件大小查找、按文件权限查找等多种查询方式。...如果在使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与
reader@ubuntu:~$ sudo cat /etc/sudoers[sudo]passwordforreader:## This file MUST be edited with the 'visudo' command as root.## Please consider adding local content in /etc/sudoers.d/ instead of# directly modifying this file.## See the man page for details on how to write a sudoers ...
find -name file # 在当前目录查找名为file的文件 find dir/ -name file #在dir/目录下查找名为file的文件 find dir/ -name '*file*' #在dir/目录下查找包含file关键词的文件,-name参数支持正则表达式 find dir/ -name file -delete # 查找文件并删除 locate file # 查找文件 which command # 显示命令...
find . -maxdepth 1 -name *.jpg -print -exec convert "{}" -resize 80x60 "thumbs/{}" \; batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick) 五、文件搜索 find / -name file1 从 '/' 开始进入根文件系统搜索文件和目录 ...
find pathname -options [-print -exec -ok ...] 2、find命令的参数; pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 -print: find命令将匹配的文件输出到标准输出。 -exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为'command' { } \;,注意...