- name 按文件名查找 - type 按文件类型查找 - exec 对搜索结果在处理 - mtime 按修改时间查找 find命令格式find path -option [-print] [-exec -ok command] {} \ 参数解释:1)path:要查找的目录路径。~ 表示$HOME目录 . 表示当前目录 / 表示根目录2)options :表示对目录路径中文件的查找方式...
find . -type f -mtime -1 找出最近1周内被访问过的文件 find . -type f -atime -7 将日志目录里超过一个礼拜的日志文件,移动到/tmp/old_logs里。 find . -type f -mtime +7 -name "*.log" -exec mv {} /tmp/old_logs \; 注意:{} 用于与-exec选项结合使用来匹配所有文件,然后会被替换为相...
find ./ -name test -print -exec cat {} \; 不打印test文件名,只打印test文件的内容 find ./ -name test -exec cat {} \; 查找文件更新日时在距现在时刻二天以内的文件 find ./ -mtime -2 查找文件更新日时在距现在时刻二天以上的文件 find ./ -mtime +2 查找文件更新日时在距现在时刻一天以上...
find /mnt -name tom.txt -ftype vfat 在/mnt下查找名称为tom.txt且文件系统类型为vfat的文件 find /mnt -name t.txt ! -ftype vfat 在/mnt下查找名称为tom.txt且文件系统类型不为vfat的文件 find /tmp -name wa* -type l 在/tmp下查找名为wa开头且类型为符号链接的文件 find /home -mtime -2 在...
1. -name :按照文件名查找文件。 2. -iname :按照文件名查找文件,不区分大小写。 3. -type :指定查找文件的类型,如普通文件(f)、目录(d)等。 4. -mtime :按照文件的修改时间来查找文件。 5. -user :按照文件属主来查找文件。 6. -size :按照文件大小来查找文件。
find /etc/ -type f -mtime -1 //在etc下查找1天以内更改的文件。+1即为大于1天 //若为atime即为查找1天以内访问的文件。 //若为ctime即为查找1天以内改动的文件。 find /etc/ -type f -mtime -1 -name test //在etc下查找1天以内更改的文件,并且名称为test。
- name 按文件名查找 - type 按文件类型查找 - exec 对搜索结果在处理 - mtime 按修改时间查找 1. 2. 3. 4. 5. 6. 7. find命令格式 find path -option [ -print ] [ -exec -ok command ] {} \ 1. 参数解释: 1)path:要查找的目录路径。
find . -type f -name "*.cpp" 这样,我们告诉 find 命令查找类型为文件(file),并且以 .cpp 结尾的文件。 [gliu@fedora work]$ find . -type f -name "*.cpp" ./file.cpp ./.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.3/src/zlib/contrib/iostream2/zstream_test.cpp ...
find /root/ -type f -ctime -1 //一天以内 find /root/ -type f -ctime +1 //一天以外 如果在find命令里加多个参数条件的就是并且的意思,也就是说查找的文件要满足这些指定的条件。 例如:find /etc/ -type f -mtime -1 -name “*.conf” ...
$ find / -nouser -type f -print 查找属组 mysql 的文件 $ find / -group mysql -type f -print 查找用户组被删掉的文件 $ find / -nogroup -type f -print 6、按时间查找 查找2天内被更改过的文件 $ find . -mtime -2 -type f -print 查找2天前被更改过的文件 $ find . -...