0
点赞
收藏
分享

微信扫一扫

Qt——2D画图

上古神龙 03-25 13:00 阅读 2

新建一个文件,并给予权限:

touch port_monitor.sh

chmod 777 port_monitor.sh

写入如下命令:

#!/bin/bash

# 定义要监控的端口号
PORT=3306

while true; do
    # 使用netstat命令检查端口是否存在
    netstat -tuln | grep ":$PORT "
    if [ $? -ne 0 ]; then
        echo "端口 $PORT 不存在,执行命令..."
 
    else
        echo "端口 $PORT 存在"
    fi
    # 等待1分钟
    sleep 60
done

开启后台启动即可:

./port_monitor.sh &

注意:使用windows编写的文件是dos格式,需要转换成unix格式:

可以使用vim编辑器进行转换

set fileformat=unix
举报

相关推荐

0 条评论