install.sh

来自「resinweb服务器源文件」· Shell 代码 · 共 58 行

SH
58
字号
#!/bin/shAPXS=RESIN_HOME=DEBUG=usage() {  echo "usage: install.sh [flags]"  echo "flags:"  echo "  -help                    : this usage message"  echo "  -conf <conf>             : apache config"  echo "  -libexec <dir>           : libexec directory"  echo "  -resin_home <resin_home> : resin home"}DEBUG=while test "$#" -ne 0 ; do    case "$1" in    # Documented arguments    -h | -help)       SHOW_HELP=true; shift;;    -conf) CONF="$2"; shift 2;;    -libexec) LIBEXECDIR="$2"; shift 2;;    -resin_home) RESIN_HOME="$2"; shift 2;;    *)   shift ; break;    esacdoneif test ! -r "$CONF"; then  echo "Can't find valid Apache configuration \"$CONF\""  exit 1fiif test -d "$LIBEXECDIR"; then  echo cp mod_caucho.so $LIBEXECDIR  cp mod_caucho.so $LIBEXECDIRelif test -z "$LIBEXECDIR"; then  LIBEXECDIR=`pwd`else  echo "Can't find valid Apache module directory in \"$LIBEXECDIR\""  exit 1figrep mod_caucho $CONF >/dev/null 2>/dev/nullif test "$?" != 0; then  cat >>$CONF <<EOF## mod_caucho Resin Configuration#LoadModule caucho_module $LIBEXECDIR/mod_caucho.soCauchoConfigFile $RESIN_HOME/conf/resin.confEOFfi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?