📄 install.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -