您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. #!/bin/sh
  2. cd "$(dirname "$0")"
  3. cd core
  4. if [ "$1" = ssl ]; then
  5. ./ssl.sh
  6. elif [ "$1" = nginx ]; then
  7. ./nginx.sh
  8. else
  9. echo "Usage: $0 <ssl | nginx>"
  10. exit 1
  11. fi