当前位置: 技术问答>linux和unix
写了一个sh脚本,执行的时候出现如下语法错误,怎么解决
来源: 互联网 发布时间:2017-03-10
本文导语: 脚本信息: 文件名:filestat.sh 文件内容: if [ $# -ne 1 ]; then echo $0 basepath; echo fi path=$1 declare -a statarray; while read line; do ftype=`file -b "$line"` let statarray["$ftype"]++; done
脚本信息:
文件名:filestat.sh
文件内容:
if [ $# -ne 1 ];
then
echo $0 basepath;
echo
fi
path=$1
declare -a statarray;
while read line;
do
ftype=`file -b "$line"`
let statarray["$ftype"]++;
done
文件名:filestat.sh
文件内容:
if [ $# -ne 1 ];
then
echo $0 basepath;
echo
fi
path=$1
declare -a statarray;
while read line;
do
ftype=`file -b "$line"`
let statarray["$ftype"]++;
done