grep -q用于if逻辑判断 安静模式,不打印任何标准输出。如果有匹配的内容则立即返回状态值0。
[email protected]:~$ cat at.txt
04:55:00 up 12:02, 0 users, load average: 0.00, 0.01, 0.05
[email protected]:~$ cat at.txt |grep -q 12
[email protected]:~$ echo $?
0
[email protected]:~$ cat at.txt |grep -q 44
[email protected]:~$ echo $?
1
ping -c 10 -i 0.5 192.168.120.206 #时间间隔和次数限制的ping 10次 0.5秒
时间: 2024-10-11 03:48:33