linux 命令怎么看文件数 find
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 命令怎么看文件数 find相关的知识,希望对你有一定的参考价值。
可以使用如下方法:1、ls -l |grep "^-"|wc -l或find ./company -type f | wc -l
查看某文件夹下文件的个数,包括子文件夹里的。
2、ls -lR|grep "^-"|wc -l
查看某文件夹下文件夹的个数,包括子文件夹里的。
3、ls -lR|grep "^d"|wc -l
说明:
ls -l长列表输出该目录下文件信息(注意这里的文件,不同于一般的文件,可能是目录、链接、设备文件等)
grep "^-"
这里将长列表输出信息过滤一部分,只保留一般文件,如果只保留目录就是 ^d
wc -l
统计输出信息的行数,因为已经过滤得只剩一般文件了,所以统计结果就是一般文件信息的行数,又由于一行信息对应一个文件,所以也就是文件的个数。可参考”Linux命令大全“了解命令 参考技术A find . -type f -name "*.c" | wc -l 参考技术B 查看文件个数的话可以用这个命令
find . -type f -print|wc -l本回答被提问者和网友采纳 参考技术C find -name "**" | wc -l 参考技术D 使用 find 命令,它用于搜索目录层次结构中的文件,以下是我们在 find 命令中使用的选项,如下所示:
-type - 指定要搜索的文件类型,在上面的情况下,f 表示查找所有常规文件。
-print - 打印文件绝对路径。
以下是我们 wc 命令中使用的选项,如下所示:
-l - 此选项打印换行符的总数,也即由 find 命令输出的绝对文件路径总数。
find 命令的一般语法
# find . -type f -print | wc -l
$ sudo find . -type f -print | wc -l
PS:使用 sudo 命令来读取指定目录中的所有文件,包括具有超级用户权限的子目录中的文件,以避免 “Permission denied” 错误。 命令详细介绍看下图查询吧
文件查找 find命令
文件查找
locate 非实时,查找是根据全系统文件数据库进行;模糊匹配;速度快;
# updatedb, 手动生成文件数据库
find 实时;精确;支持众多查找标准(文件名,文件类型,文件权限查找,正则表达式匹配查找);遍历指定目录中的所有文件完成查找,速度慢;
# find 查找路径 查找标准 查找到以后的处理运作
查找路径,默认为当前目录
查找标准,默认为指定路径下的所有文件
处理动作,默认为显示到屏幕
查找标准,匹配标准:
-name ‘FILENAME‘ 对文件名做精确匹配
# find /etc -name ‘passwd‘ 查找/etc 目录下passwd的文件
[[email protected] ~]# find /etc -name ‘passwd‘
/etc/passwd
/etc/pam.d/passwd
文件名通配:* ? [ ] 等
# find /etc -name ‘*passwd*‘
[[email protected] ~]# find /etc -name ‘*passwd*‘
/etc/passwd.OLD
/etc/security/opasswd
/etc/passwd
/etc/pam.d/passwd
/etc/passwd-
-iname 文件名匹配不区分大小写
-regex PATTERN
-user USERNAME
-uid UID 系统的某个用户被删,所有此前此用户文件属主为此前的用户id号
-gid GID 同上
-nouser 查找没有属主的文件,工作中要经常查找此类文件并将属主指定给管理员,以免被其他用户篡改。
-type 根据文件类型
f 普通文件
d 目录
c 字符设备
b 块设备
l 链接
p 管道
s 套接字
/tmp 目录下类型不是目录的文件
[[email protected] ~]# find /tmp -not -type d
/tmp/vmware-root-860070256/vmware-apploader-1294.log
/tmp/vmware-root-860070256/vmware-apploader-1844.log
/tmp/vmware-root-860070256/vmware-apploader-1838.log
/tmp/vmware-root-860070256/vmware-apploader-1300.log
/tmp 目录下,不是目录,并且还不能套接字类型的文件
#
/tmp 目录下,属主不是user1,也不是user2的文件
# find /tmp -not -user -a -not -user2
# find /tmp -not \( -user user1 -o -user user2 \)
-size
#k #M #G
[ + | - ]#k
组合条件
-a
-o
-not
根据时间查找
-atime
-ctime
-mtime
# find /tmp -atime +30 30天内没访问过
-perm MODE 根据权限查找
#man perm
-MODE 每一位权限都必须精确匹配
/MODE 有一位被匹配
# find ./ -perm 644 精确匹配
/644 只要有一位被匹配都可以查到
-644 每一位都必须匹配 对应的位完全包含 755能被匹配到 而750不能够
# find ./ -perm -007
运作:
-print 显示
-ls 类似ls -l 的行驶显示每个文件详细
-ok COMMAND {} \; \;重要
-exec COMMAND {} \;
# find ./ -perm -006 -exec chmod o-w {} \;
# find ./ -type d -ok chmod +x {} \;
用ok 时,交互,每个操作都需要用户确认。
exec 无交互
找到目录下属主有写的权限,并将它名字改为FILENAME.nw
# find ./ -perm 020 -exec mv {} {}.new \;
找文件名.sh 结尾的文件 并将所有用户都有执行权限的文件其它用户的执行权限去掉;
# find ./ -name ‘*.sh‘ -a -perm -111 -exec chmod o-x {} \;
作业:
1、查找/var 目录下属主为root并且属组为mail的所有文件
# find /var -user root -group mail
2、查找/usr目录下不属于root,bin或student的文件
# find /usr -not -user root -a -not -user bin -a -not -user student
# find /usr -not \( -user root -o -user bin -o -user student \)
3、查找/etc目录下最近一周内内容修改过且不属于root及student用户的文件;
# find /etc -mtime -7 -not -user root -a -not -user student
# find /etc -mtime -7 -not \( -user root -o -user student \)
4、查找当前系统上没有属主或属组且最近1天内曾被访问过的文件,并将其属主属组均修改为root;
# find ./ \( -nouser -o -nogroup \) -a -atime -1 -exec chown root:root {} \;
5、查找/etc目录下大于1M的文件,并将其文件名写入/tmp/etc/largefiles文件中
# find /etc -size +1M -exec >> /tmp/etc/largefiles
# find /etc -size +1M -exec echo {} >> /tmp/etc/largefiles \;
# find /etc -size +1M | xargs echo >> /tmp/etc/largefiles 内容为使用空格隔开的一行文本
6、查找/etc目录下所有用户都没有写权限的文件,显示出其详细信息;
# find /etc -not -perm /222 -ls
以上是关于linux 命令怎么看文件数 find的主要内容,如果未能解决你的问题,请参考以下文章
怎么用shell脚本语言编写一个统计当前目录下的文件数目的...