Masowe zabijanie operacja oszczędza czas. Zrób to w samym MySQL:
Uruchom te polecenia
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------------
jeśli nie chcesz przechowywać w pliku, przechowuj w variable
Po prostu uruchom w wierszu poleceń
> 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")