《Linux》 Part1 top 指定多个程序名查看状态
- 1.top 查看多个程序状态命令
- 2.单个进程状态查看命令
1.top 查看多个程序状态命令
processes=("nginx" "apache2")
tmp=""for process in "${processes[@]}"; dopids=$(pgrep "$process")if [ -n "$pids" ]; then# 如果 tmp 还没有内容,就不添加逗号,否则在新的 PID 前添加逗号if [ -z "$tmp" ]; thentmp+="$pids"elsetmp+=",$pids"fifi
done
# 输出最终的字符串
echo "$tmp"
top -p $tmp
单个进程查看
2.单个进程状态查看命令
top -p `pgrep ngi*`