mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-23 22:42:15 +08:00
10 lines
158 B
Bash
10 lines
158 B
Bash
#!/bin/sh
|
|
|
|
PROCESS=`ps -ef|grep aliyunpan|grep -v grep|grep -v PPID|awk '{ print $2}'`
|
|
for i in $PROCESS
|
|
do
|
|
# kill进程
|
|
kill -9 $i
|
|
break
|
|
done
|