#!/bin/sh cd "$(dirname "$0")" cd core if [ "$1" = ssl ]; then ./ssl.sh elif [ "$1" = nginx ]; then ./nginx.sh else echo "Usage: $0 " exit 1 fi