标签:please expr 统计 lse exp 自身 bin ase input
#!/bin/bashif [ -e a.txt ]
then
n=$(cat a.txt)
else
n=0
fi
if expr $1 + 0 &>/dev/null
then
echo "$1 is number"
n=0
else
echo "$1 is not number please input number"
fi
let n++
echo $n > a.txt
cat a.txt
标签:please expr 统计 lse exp 自身 bin ase input
原文地址:http://blog.51cto.com/19941018/2153980