सामूहिक हत्या ऑपरेशन समय बचाता है। इसे MySql में ही करें:
इन आदेशों को चलाएँ
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------------
अगर आप फाइल में स्टोर नहीं करना चाहते हैं, तो variable
. में स्टोर करें
बस अपने कमांड प्रॉम्प्ट में चलाएं
> 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")