shell 將sleep超過1000s的進程kill

mysql -h127.0.0.1 -uroot -p123456 -P3306 -N -e "show full processlist;" | awk -F '\t' '{if($5=="Sleep" && $6>1000) print "kill " $1 " ;"}' > /tmp/mykill.sql if [[ -s /tmp/mykill.sql ]] then mysql -h
相關文章
相關標籤/搜索