nmap-ncat中gnu-netcat的'-z'等效选项是什么?


13

我在使用以下命令运行脚本之前检查服务上的侦听端口:

until nc -z $HOST $PORT
do
  echo "waiting for service to be available..."
  sleep 0.5
done

exec "/my/script"

它曾经与gnu-netcat一起使用,但是现在,我已经升级了Linux发行版,并且它使用了nmap-ncat作为/usr/bin/nc命令。

我想知道与nmap-ncat包一起使用的等效解决方案。


最近在ServerFault上问和回答了相同的问题:serverfault.com/q/788934/112426
bonsaiviking

Answers:


13

--send-only </dev/null 似乎可以解决问题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.