java调用nmap命令行,通过grep和awk过滤找到匹配结果
nmap -sS -P0 -p 22,80,3306 192.168.1.100 | grep open | awk -F '/' '{print \$1}'
print \$1 -----开始没有加入转义符号,结果不正确。