码迷,mamicode.com
首页 > 其他好文 > 详细

文件类型统计

时间:2015-01-19 20:41:39      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

 1 #!/bin/bash
 2 
 3 if [ $# -ne 1 ]
 4 then
 5     echo please input one 
 6 fi
 7 path=$1
 8 declare -A wow
 9 
10 while read line;
11 do 
12     ftype=`file -b $line`
13     let wow["$ftype"]++;
14 done< <(find $path -type f -print )
15 
16 echo ============= file type ================
17 
18 for ftype in "${!wow[@]}";
19 do
20     echo $ftype : ${wow["$ftype"]}
21 done

 脚本可以遍历指定目录下所以文件,然后统计文件信息。

文件类型统计

标签:

原文地址:http://www.cnblogs.com/cornell/p/4234497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!