?? mini_httpd.init
字號:
#!/bin/sh# mini_httpd startup script# Nelson Minar <nelson@monkey.org> Thu Dec 30 13:54:31 PST 1999# the following two lines added 2000-01-31 by Bennett Todd <bet@rahul.net># chkconfig: 2345 99 01# description: control script for mini_httpd# configuration options:DOCROOT=/home/httpd/htmlLOGFILE=/var/log/httpd/mini_httpdPIDFILE=/var/run/mini_httpd.pidHTTPD=/usr/bin/mini_httpd. /etc/rc.d/init.d/functionscase "$1" in start) if [ ! -d $DOCROOT ]; then echo "mini_httpd: $DOCROOT does not exist." exit 1; fi cd $DOCROOT action "Starting mini_httpd" $HTTPD -l $LOGFILE -i $PIDFILE; touch /var/lock/subsys/httpd ;; stop) echo -n "Stopping mini_httpd " killproc mini_httpd echo rm -f /var/lock/subsys/httpd $PIDFILE ;; status) status mini_httpd ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: mini_httpd {start|stop|status|restart|reload}" ;;esacexit 0
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -