shell脚本实现统计目录下(包括子目录)所有文件的个数

2024-12-05 07:39:19
推荐回答(3个)
回答1:

在shell终端中输入下列命令:

# 在当前目录生成脚本文件 countfile
cat >countfile <#!/bin/sh
find "\$@" -type f |
wc -l
SCRIPT
# 为脚本添加权限
chmod +x countfile
# 执行用例
./countfile ~

回答2:

find命令可以实现查找文件的类型的,希望可以帮到楼主。
find / -type d|wc -l
就是这一个命令!以后有问题的话, 可以一起研究。

回答3:

#!/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”