Massedrab drift sparer tid. Gør det i selve MySql:
Kør disse kommandoer
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------------
hvis du ikke ønsker at gemme i fil, skal du gemme i en variable
Bare kør i din kommandoprompt
> 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")