摘要: 首先需要查到到进程,centos 使用top,iftop #!/bin/bash if [ $# -ne 1 ]; then echo "用法: $0 <进程ID>" exit 1 fi pid=$1 if ! ps -p $pid &> /dev/null; then echo "进程 $pid 阅读全文
posted @ 2023-11-02 14:43 缺个好听的昵称 阅读(26) 评论(0) 推荐(0) 编辑