《Linux Shell脚本攻略》 笔记 第三章:文件操作
[root@localhost dd_test]# dd if=/dev/zero of=junk.data bs=1k count=10
10+0 records in
10+0 records out
10240 bytes (10 kB) copied, 0.00137023 s, 7.5 MB/s
#!/bin/bash
for name in {1..100}.txt
do
touch $name
dd if=/dev/zero of=$name bs=1k count=1
done
[root@localhost touch_more]# ll -al 100*
lrwxrwxrwx. 1 root root 7 Jan 2 00:24 100_symbol.txt -> 100.txt
-rw-r--r--. 1 root root 1024 Jan 2 00:22 100.txt
100_symbol.txt
./100_symbol.txt
100.txt
[root@localhost touch_more]# cat filestat.sh #!/bin/bash if [ $# -ne 1 ]; then echo $0 basepath; exit 1 fi path=$1 declare -A statarray; while read line; do ftype=$(file -b "$line") let statarray["$ftype"]++; done < <(find $path -type f -print) //以子进程统计文件名 echo ===================FILE types and counts =============== for ftype in "${!statarray[@]}"; //数组表 do echo $ftype : ${statarray["$ftype"]} done
/home/yxx/program_test/touch_more
作者:铭毅天下
转载请标明出处,原文地址:http://blog.csdn.net/laoyang360/article/details/42364783
如果感觉本文对您有帮助,请点击‘顶’支持一下,您的支持是我坚持写作最大的动力,谢谢!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。