Created
November 20, 2015 16:40
-
-
Save lichti/550ae0139be42d0d54af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MYSQL_CONN="-uUSER -pPASS"; | |
USERS="'user1','user2','usern'" | |
mysql ${MYSQL_CONN} -e "select concat('KILL ',id,';') from information_schema.processlist | |
where user IN (${USERS}) \ | |
into outfile '/tmp/sleep_processes.txt'; \ | |
source /tmp/sleep_processes.txt;"; \ | |
rm -rf /tmp/sleep_processes.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment