Asesinatos en masa la operación ahorra tiempo. Hazlo en MySql mismo:
Ejecute estos comandos
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------------
si no desea almacenar en un archivo, guárdelo en una variable
Simplemente ejecute en su símbolo del sistema
> 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")