SHELL如何循环两个变量
- 由于Glusterfs官网说volume挂掉后不会自启,需要手动启动,打算写一个循环检索的脚本判断volume的状态并对停止的volume进行强制启动,目前通过这三个语句将volume Name 和 volume Status获取到并保存在了namestatus.txt文本中,想写下一步的时候却犯了难,涉及到两个变量的要用哪种循环语句,想要达到的效果就是当状态为stop的时候,执行gluster volume start [volume Name] force。试了if 和 for,总感觉逻辑怪怪的,脚本也没有按照想想当中运行,求各位大佬指点一下,主要是我定义变量的时候总提示语法不对,我用的是
a='cat namestatus.txt | awk '{print $1}''
回答
把每i行读成数组,注意格式,不能在等号两边加空格: words=( $line )
cat $1 | while read linedo
echo $line
words=( $line )
if [[ ${words[0]} == "Stopped" ]]
then
#echo 'Need start' ${words[1]}
gluster volume start ${words[1]} force
fi
done
以上是 SHELL如何循环两个变量 的全部内容, 来源链接: utcz.com/a/36685.html