mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 17:00:52 +08:00
9 lines
147 B
Bash
Executable File
9 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
os=$(echo `uname -s`)
|
|
if [ $os == 'Darwin' ]; then
|
|
./https_server alone https_server2.cf
|
|
else
|
|
./https_server alone https_server.cf
|
|
fi
|