You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
213 B

#!/bin/bash
#功能:杀掉两个守护进程
ps -ef |grep binlog_loader |awk '{print $2}'|xargs kill -9
ps -ef |grep binlog_miner | awk '{print $2}'|xargs kill -9
echo '恭喜,两个进程成功杀掉!'