?? thttpd.sh
字號(hào):
#!/bin/sh## thttpd.sh - startup script for thttpd on FreeBSD## This goes in /usr/local/etc/rc.d and gets run at boot-time.case "$1" in start) if [ -x /usr/local/sbin/thttpd_wrapper ] ; then echo -n " thttpd" /usr/local/sbin/thttpd_wrapper & fi ;; stop) kill -USR1 `cat /var/run/thttpd.pid` ;; *) echo "usage: $0 { start | stop }" >&2 exit 1 ;;esac
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -