使用telnet 批量請求域名及端口,檢查服務可用性

#!/bin/bash i=1 while (( i <= 200 ))  do    nc -w 1 -z www.baidu.com 443        if [ $? -ne 0 ]          then           echo timeout         fi   let  i++  done >> 1.txtbash
相關文章
相關標籤/搜索