- 论坛徽章:
- 0
|
本帖最后由 su_root 于 2016-02-02 16:35 编辑
#!/bin/bash
if [ $# -ne 1 ]; #判断输入路径是否存在
then
echo "Usage is $0 basepath"
exit
fi
path=$1 #获取脚本获取的第一个参数
declare -A statarray; #定义数组
while read line; #第一个参数赋值给line
do
ftype=`file -b "$line"| cut -d, -f1` #使用file-b cut -d 截取文件类型赋值给$ftype
let statarray["$ftype"]++;
done < <( find $path -type f -print ) #<( find $path -type f -print )表示文件名 前一个<表示重定向 (此处意义不明)
for ftype in "${!statarray[@]}"; #${!statarray[@]} 数组索引列表 即文件类型
do
echo $ftype : ${statarray["$ftype"]} # 循环输出
这几《shall脚本攻略》中的一个案例,红字处意义不明,请教高手,<( find $path -type f -print )路径重定向到哪里?
|
|