shell 脚步统计自身执行次数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚步统计自身执行次数相关的知识,希望对你有一定的参考价值。
#!/bin/bash
if [ -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
以上是关于shell 脚步统计自身执行次数的主要内容,如果未能解决你的问题,请参考以下文章