生成文件统计信息的脚本如下:
#!/bin/bash
#文件名:filestat.sh
#实现从指定路径目录的多个文件中收集文件类型统计的信息,输出每种类型文件的数量
if [ $# -ne 1 ];
then
echo "Usage is $0 basepath";
exit
fi
path=$1
declare -A statarray;
#类型 与对应的数量信息存储在关联数组中
while read line;
do
ftype=`file -b "$line" | cut -d, -f1`
let statarray["$ftype"]++;
done < <(find $path -type f -print)
echo ===============File types and counts====
for ftype in "${!statarray[@]}";
do
echo $ftype : ${statarray["$ftype"]}
done
说明如下:
1,ftype=`file -b "$line" | cut -d, -f1`</