#!/bin/bash if netstat -an | grep 'LISTEN' | grep ':3000\b' > /dev/null; then echo "1" # 端口已被占用,输出1 else echo "0" # 端口未被占用,输出0 fi