摘要: #!/bin/bash #file name : 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` ... 阅读全文
posted @ 2019-03-17 11:27 zhg1016 阅读(246) 评论(0) 推荐(0) 编辑