1
0
mirror of https://github.com/hiskang/acme.sh synced 2025-06-10 17:36:10 +00:00

Support Solaris

This commit is contained in:
neil 2016-08-10 23:13:14 +08:00
parent 22ea4004e1
commit e3c66532c5

View File

@ -423,7 +423,7 @@ _ss() {
netstat -an -p tcp | grep LISTEN | grep ":$_port "
elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null ; then
#for solaris
netstat -an -P tcp | grep "\.$_port "
netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
else
netstat -ntpl | grep ":$_port "
fi