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
以上是 Bash脚本中的变量,使它从上次运行起就保持其值 的全部内容, 来源链接: utcz.com/qa/403378.html