linux中find命令的使用方法有哪些 (linux 多条件查询)

find命令的参数及使用命令:

pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。

-print: find命令将匹配的文件输出到标准输出。

-exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为’command’ { } \;,注意{ }和\;之间的空格。

-ok: 和-exec的作用相同,只不过以一种更为安全的模式来执行该参数所给出的shell命令,在执行每一个命令之前,都会给出提示,让用户来确定是否执行。

#-print 将查找到的文件输出到标准输出

#-exec command {} \; —–将查到的文件执行command操作,{} 和 \;之间有空格

#-ok 和-exec相同,只不过在操作前要询用户

例:find . -name .svn | xargs rm -rf

====================================================

-name filename#查找名为filename的文件

-perm#按执行权限来查找

-user username#按文件属主来查找

-group groupname#按组来查找

-mtime -n +n #按文件更改时间来查找文件,-n指n天以内,+n指n天以前

-atime -n +n #按文件访问时间来查GIN: 0px”>

-ctime -n +n#按文件创建时间来查找文件,-n指n天以内,+n指n天以前

-nogroup#查无有效属组的文件,即文件的属组在/散早etc/groups中不存在

-nouser#查无有效属主的文件,即文件的属主在/etc/passwd中不存

-newer f1 !f 找文件,-n指n天以内,+n指n天以前

-ctime -n +n #按文件创建时间来查找文件,-n指n天以岁备内,+n指n天以前

-nogroup#查无有效属组的文件,即文件的属组在/etc/groups中不存在

-nouser#查无有效属主的文件,即文件的属主在/etc/passwd中不存

-newer f1 !f #查更改时间比f1新但比f2旧的文件

-type b/d/c/p/l/f#查是块设备、目录、字符设备、管道、符号链接、普通文件

-size n #查长度为n块的文件

-depth#使查找在进入子目录前先行查找完本目录

-fstype#查更改时间比f1新但比f2旧的文件

-type b/d/c/p/l/f#查是块设备、目录、字符设备、管道、符号链接、普通文件

-size n #查长度为n块的文件

-depth#使查找在进入子目录乎掘毁前先行查找完本目录

-fstype#查位于某一类型文件系统中的文件,这些文件系统类型通常可 在/etc/fstab中找到

-mount#查文件时不跨越文件系统mount点

-follow#如果遇到符号链接文件,就跟踪链接所指的文件

-cpio %; #查位于某一类型文件系统中的文件,这些文件系统类型通常可 在/etc/fstab中找到

-mount#查文件时不跨越文件系统mount点

-follow#如果遇到符号链接文件,就跟踪链接所指的文件

-cpio#对匹配的文件使用cpio命令,将他们备份到磁带设备中

-prune#忽略某个目录

=====================================================

$find ~ -name “*.txt” -print #在$HOME中查.txt文件并显示

$find . -name “*.txt” -print

$find . -name “*” -print #查以大写字母开头的文件

$find /etc -name “host*” -print #查以host开头的文件

$find . -name “.txt” -print #查以两个小写字母和两个数字开头的txt文件

$find . -permprint

$find . -permexec ls -l {} \; #查所有用户都可读写执行的文件同-perm 777

$find . -type d -print

$find . ! -type d -print

$find . -type l -print

$find . -size +c -print#查长度大于1Mb的文件

$find . -size 100cprint# 查长度为100c的文件

$find . -size +10 -print#查长度超过期作废10块的文件(1块=512字节)

$cd /

$find etc home apps -depth -print | cpio -ivcdCo /dev/rmt0

$find /etc -name “passwd*” -exec grep “cnscn” {} \; #看是否存在cnscn用户

$find . -name “yao*” | xargs file

$find . -name “yao*” | xargs echo “” > /tmp/core.log

$find . -name “yao*” | xargs chmod o-w

======================================================

find -name april*在当前目录下查找以april开始的文件

find -name april* fprint file在当前目录下查找以april开始的文件,并把结果输出到file中

find -name ap* -o -name may* 查找以ap或may开头的文件

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在/home下查最近两天内改动过的文件

find /home -atime查1天之内被存取过的文件

find /home -mmin + 在/home下查60分钟前改动过的文件

find /home -amin + 查最近30分钟前被存取过的文件

find /home -newer tmp.txt在/home下查更新时间比tmp.txt近的文件或目录

find /home -anewer tmp.txt在/home下查存取时间比tmp.txt近的文件或目录

find /home -used列出文件或目录被改动过之后,在2日内被存取过的文件或目录

find /home -user cnscn 列出/home目录内属于用户cnscn的文件或目录

find /home -uid +列出/home目录内用户的识别码大于501的文件或目录

find /home -group cnscn列出/home内组为cnscn的文件或目录

find /home -gid列出/home内组id为501的文件或目录

find /home -nouser 列出/home内不属于本地用户的文件或目录

find /home -nogroup 列出/home内不属于本地组的文件或目录

find /home -name tmp.txt -maxdepth列出/home内的tmp.txt 查时深度最多为3层

find /home -name tmp.txt -mindepth从第2层开始查

find /home -empty查找大小为0的文件或空目录

find /home -size +512k 查大于512k的文件

find /home -sizek 查小于512k的文件

find /home -links + 查硬连接数大于2的文件或目录

find /home -perm查权限为700的文件或目录

find /tmp -name tmp.txt -exec cat {} \;

find /tmp -name tmp.txt -ok rm {} \;

find / -amin# 查找在系统中最后10分钟访问的文件

find / -atime# 查找在系统中最后48小时访问的文件

find / -empty# 查找在系统中为空的文件或者文件夹

find / -group cat# 查找在系统中属于 groupcat的文件

find / -mmin# 查找在系统中最后5分钟里修改过的文件

find / -mtime#查找在系统中最后24小时里修改过的文件

find / -nouser#查找在系统中属于作废用户的文件

find / -user fred #查找在系统中属于FRED这个用户的文件

查当前目录下的所有普通文件

# find . -type f -exec ls -l {} \;

-rw-r–r– 1 root root./conf/magic

-rw-r–r– 1 root root./conf.d/README

查当前目录下的所有普通文件,并在- e x e c选项中使用ls -l命令将它们列出

=================================================

在/ l o g s目录中查找更改时间在5日以前的文件并删除它们:

$ find logs -type f -mtime +5 -exec -ok rm {} \;

=================================================

查询当天修改过的文件

# find ./ -mtimetype f -exec ls -l {} \;

=================================================

查询文件并询问是否要显示

# find ./ -mtimetype f -ok ls -l {} \;

? y

-rw-r–r– 1 cnscn cnscn 1月 12 12:22 ./classDB.inc.php

# find ./ -mtimetype f -ok ls -l {} \;

? n

#

=================================================

查询并交给awk去处理

# who | awk ’{print $1″\t”$2}’

cnscn pts/0

=================================================

awk—grep—sed

# df -k | awk ‘{print $1}’ | grep -v ’none’ | sed s”/\/dev\///g”

文件系统

sda2

sda1

# df -k | awk ‘{print $1}’ | grep -v ’none’

文件系统

/dev/sda2

/dev/sda1

1)在/tmp中查找所有的*.h,并在这些文件中查找“SYSCALL_VECTOR”,最后打印出所有包含”SYSCALL_VECTOR”的文件名

A) find /tmp -name “*.h” | xargs -n50 grep SYSCALL_VECTOR

B) grep SYSCALL_VECTOR /tmp/*.h | cut -d’:’ -f1| uniq > filename

C) find /tmp -name “*.h” -exec grep “SYSCALL_VECTOR” {} \; -print

2)find / -name filename -exec rm -rf {} \;

find / -name filename -ok rm -rf {} \;

3)比如要查找磁盘中大于3M的文件:

find . -size +3000k -exec ls -ld {} ;

4)将find出来的东西拷到另一个地方

find *.c -exec cp ‘{}’ /tmp ‘;’

如果有特殊文件,可以用cpio,也可以用这样的语法:

find dir -name filename -print | cpio -pdv newdir

6)查找:36:37时更改过的文件

# A=`find ./ -name “*php”` | ls -l –full-time $A 2>/dev/null | grep “:36:37”

find

语法:

# find 路径 参山御禅数

参 数说明:

时间查找参数:

-atime n :将n*24小时内存取过的的文件列出来

-ctime n :将n*24小时内改变、新增的文件或者目录列出来

-mtime n :将n*24小时内修改过的文件或者目录列出来

-newer file :把比file还要新的文件列出来

名称查找参数:

-gid n:寻找群组ID为n的文件

-group name :寻找群组名称为name的文件

-uid n:寻找拥有者ID为n的文件

-user name :寻找用户者名称为name的文件

-name file :寻找文件名为file的文件(可以使用通配符)

例 如: 从根目录开始查找名称是zgz的文件

# find / -name zgz

/home/zgz

/home/zgz/zgz

/home/weblogic/bea/user_projects/domains/zgz

/home/oracle/product/10g/cfgtoollogs/dbca/zgz

/home/oracle/product/10g/cfgtoollogs/emca/zgz

/home/oracle/oradata/zgz

查找名称中带有zgz的文件

# find / -name ‘*zgz*’

/home/zgz

/home/zgz/zgz1

/home/zgz/zgzdirzgz

/home/zgz/zgz

/home/zgz/zgzdir

/home/weblogic/bea/user_projects/domains/zgz

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

/home/weblogic/bea/user_projects/domains/zgz/zgz.log

当我们用whereis和locate无法查找到我们需要的文件时,可以使用find,但是find是在硬拆乱盘上遍历查找,因此非常消耗硬盘的资源,而且效率也非常低,因此建议大家优先使逗尘用whereis和locate。

locate 是在数据库里查找,数据库大至每天更新一次。

whereis 可以找到可执行命令和man page

find 就是根据条件查找文件。

Linux

find命令用来在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。如果使用该命令时,不设置任何参数,则find命令将在当前目录下查纯烂找子目录与文件,并且将查找到的子目录和文件全部进行显示。

语法格式:

find path -option {} \;

参数说明:

find根据下列规则判断path和expression,在命令列上之一个-(),!之含核前的部分为path,之后的部分是expression。如果path是空字串则使用目前路径,如果expression是空字串则使用-print为预设expression。

expression中可使用的选项有二三十个,在此只介绍常用的部分。

-mount,-xedv:只检查和指定目录在同一个文件系统下的文件,避免列出其他文件系统中的文件;

-amin n:在过去n分钟内被读取过;

-anewer file:比文件file更晚被读取过的文件;

-atime n:在过去n天内被读取过的文件;

-cmin n:在过去n分钟内被修改过;

-cnewer file:比文件file更新的文件;

-ctime n:在过去n天内被修改过的文件;

-empty:空的文件-gid n or -group name:gid是n或是group名称是name;

-ipath p,-path p:路径名称符合p的文谈裤掘件,ipath会忽略大小写;

-name name,-iname name:文件名称符合name的文件,iname会忽略大小写;

-size n:文件大小是n单位,b代表512位元组的区块,c表示字元数,k表示kilo bytes,w是二个位元组。

相关问题拓展阅读:

    linux 多条件查询的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于linux 多条件查询,linux中find命令的使用方法有哪些的信息别忘了在本站进行查找喔。


    数据运维技术 » linux中find命令的使用方法有哪些 (linux 多条件查询)