当前位置: 技术问答>linux和unix
请教Solaris脚本的赋值问题
来源: 互联网 发布时间:2016-12-26
本文导语: 我的脚本如下: #!/bin/sh TAG=no if [ -f /tmp/tmp.ini ];then while read OPTNAME EQSIGN OPTVALUE do if [ $OPTNAME = 'TAG' ]; then TAG=$OPTVALUE echo $TAG break fi done...
我的脚本如下:
#!/bin/sh
TAG=no
if [ -f /tmp/tmp.ini ];then
while read OPTNAME EQSIGN OPTVALUE
do
if [ $OPTNAME = 'TAG' ]; then
TAG=$OPTVALUE
echo $TAG
break
fi
done
#!/bin/sh
TAG=no
if [ -f /tmp/tmp.ini ];then
while read OPTNAME EQSIGN OPTVALUE
do
if [ $OPTNAME = 'TAG' ]; then
TAG=$OPTVALUE
echo $TAG
break
fi
done