Linux下杀进程脚本

[iap@hp-server bin]$ cat stop.sh
#!/bin/sh
PID=`ps -ef|grep dbsync |awk '{print $2}'`
kill -9  $PID

相关推荐