shell脚本实现统计目录下(包括子目录)所有文件的个数
3个回答
展开全部
find命令可以实现查找文件的类型的,希望可以帮到楼主。
find / -type d|wc -l
就是这一个命令!以后有问题的话, 可以一起研究。
find / -type d|wc -l
就是这一个命令!以后有问题的话, 可以一起研究。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#!/bin/bash
ls | wc -c
Let “filenum = 0”
Let “dirnum = 0”
Let “regnum = 0”
Let “pipenum = 0”
Let “lnum = 0”
For I in $(ls)
Do
If [ -f $i]
Then
Let “$filenum += 1”
Elif[ -d $i]
Let “$dirnum +=1”
Elif[ -d $i]
Let “$ regnum +=1”
Elif[ -d $i]
Let “$ pipenum +=1”
Elif[ -d $i]
Let “$ lnum +=1”
Fi
Done
Echo “the number of files is $filenum”
Echo “the number of directorys is $dirnum”
Echo “the number of regular file is $regnum”
Echo “the number of pipeline file is $pipenum”
Echo “the number of link file is $lnum”
ls | wc -c
Let “filenum = 0”
Let “dirnum = 0”
Let “regnum = 0”
Let “pipenum = 0”
Let “lnum = 0”
For I in $(ls)
Do
If [ -f $i]
Then
Let “$filenum += 1”
Elif[ -d $i]
Let “$dirnum +=1”
Elif[ -d $i]
Let “$ regnum +=1”
Elif[ -d $i]
Let “$ pipenum +=1”
Elif[ -d $i]
Let “$ lnum +=1”
Fi
Done
Echo “the number of files is $filenum”
Echo “the number of directorys is $dirnum”
Echo “the number of regular file is $regnum”
Echo “the number of pipeline file is $pipenum”
Echo “the number of link file is $lnum”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询