Linux下杀进程脚本

Schvian 2019-08-16

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

相关推荐