Giết người hàng loạt hoạt động tiết kiệm thời gian. Làm điều đó trong chính MySql:
Chạy các lệnh này
mysql> select concat('KILL ',id,';') from information_schema.processlist
where user='root' and time > 200 into outfile '/tmp/a.txt';
mysql> source /tmp/a.txt;
---------edit------------
nếu bạn không muốn lưu trữ trong tệp, hãy lưu trữ trong một biến variable
Chỉ cần chạy trong dấu nhắc lệnh của bạn
> out1=$(mysql -B test -uroot -proot --disable-column-names -e "select concat('KILL ',id,';') from information_schema.processlist where user='root' and time > 200;")
> out2= $(mysql -B test -uroot -proot --disable-column-names -e "$out1")