linux的ping命令,3表示ping3次,你也可以ping多次,OK表示在线,off表示不在线
以下是命令内容
ping -c 3 1.1.1.1 > /dev/null if [ $? -eq 0 ] then echo ok else echo off fi