Massamoord bediening bespaart tijd. Doe het in MySql zelf:
Voer deze opdrachten uit
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------------
als je niet in een bestand wilt opslaan, sla dan op in een variable
Voer gewoon uit in uw opdrachtprompt
> 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")