mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-23 22:42:15 +08:00
14 lines
161 B
Bash
14 lines
161 B
Bash
|
#!/bin/sh
|
||
|
# 检查aliyunpan进程是否存在
|
||
|
ps | awk '{print $4}' | grep aliyunpan
|
||
|
if [ $? == 0 ]
|
||
|
then
|
||
|
echo $?
|
||
|
exit 0
|
||
|
else
|
||
|
echo $?
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
|