s60dmtpd

来自「Open DMT Client C Source code」· 代码 · 共 27 行

TXT
27
字号
#!/bin/sh# Start/Stop daemon# --- project nameDAEMON=dmtpdDAEMON_ARGS=# --- start/stop script. /etc/init.d/daemon.sh# --- command line optionscase "$1" in  start)        start        ;;  stop)        stop        ;;  restart)        restart        ;;  *)        echo "Usage: $0 {start|stop|restart}"        exit 1esacexit $?

⌨️ 快捷键说明

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