You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
164 B
10 lines
164 B
4 years ago
|
#!/bin/sh
|
||
|
# 检查端口是否存在
|
||
|
|
||
|
source riskenv
|
||
|
if [[ `findPortPid $PORT|wc -l` -eq 1 && `findPortPid $serverPort|wc -l` -eq 1 ]]
|
||
|
then
|
||
|
echo 0
|
||
|
else
|
||
|
echo 1
|
||
|
fi
|