linux – 在Bash脚本中的变量,保持最后一次运行时的值

前端之家收集整理的这篇文章主要介绍了linux – 在Bash脚本中的变量,保持最后一次运行时的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以创建一个具有持久变量值的 Bash脚本吗?

例如,当脚本第一次运行(在特定时间限制)时,我将初始化一个变量0,并且每次脚本运行时,该变量自动增加.

解决方法

你不能,但你可以使用一个文件来做到这一点
#!/bin/sh

# if we don't have a file,start at zero
if [ ! -f "/tmp/value.dat" ] ; then
  value=0

# otherwise read the value from the file
else
  value=`cat /tmp/value.dat`
fi

# increment the value
value=`expr ${value} + 1`

# show it to the user
echo "value: ${value}"

# and save it for next time
echo "${value}" > /tmp/value.dat
原文链接:https://www.f2er.com/linux/393886.html

猜你在找的Linux相关文章