当前位置: 技术问答>linux和unix
关于在shell中使用循环和条件判断的问题( 内详)
来源: 互联网 发布时间:2015-05-11
本文导语: 一个简单的shell程序: #!/bin/sh while[1] do ping -c 1 172.19.6.212 if["$?"="1"] then ifconfig eth0 172.19.6.212 netmask 255.255.255.0 exit 0 else echo "The primary server is working properly!" done | 哪里来的那些冒...
一个简单的shell程序:
#!/bin/sh
while[1]
do
ping -c 1 172.19.6.212
if["$?"="1"] then
ifconfig eth0 172.19.6.212 netmask 255.255.255.0
exit 0
else
echo "The primary server is working properly!"
done
#!/bin/sh
while[1]
do
ping -c 1 172.19.6.212
if["$?"="1"] then
ifconfig eth0 172.19.6.212 netmask 255.255.255.0
exit 0
else
echo "The primary server is working properly!"
done
|
哪里来的那些冒号?