shell 脚步统计自身执行次数

前端之家收集整理的这篇文章主要介绍了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

原文链接:https://www.f2er.com/bash/387396.html

猜你在找的Bash相关文章