mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-02-03 05:47:16 +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
|