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 脚步统计自身执行次数的主要内容,如果未能解决你的问题,请参考以下文章

如何统计centos中shell出现的次数

shell实现统计浏览次数并将结果保存到文件中

利用shell脚本统计文件中出现次数最多的IP

使用shell脚本统计文件中ip出现的次数

Linux Shell之统计某个字符串在文件中的出现次数

Linux作业-shell统计某文章中出现频率最高的N个单词并排序输出出现次数