📄 s991wtxregd
字号:
#!/bin/sh## Script to start/stop wtxregd## Modify the following line to indicate the Tornado installation directorywind_base=/u/windREGISTRY=$wind_base/host/sun4-solaris2/bin/wtxregdcase "$1" in'start') if [ -x $REGISTRY ] ; then $REGISTRY & echo "Tornado Registry started." fi ;;'start_msg') echo "Tornado Registry started." ;;'stop') PID=`/usr/bin/ps -e -u 0|/usr/bin/fgrep wtxregd|/usr/bin/awk '{print $1}'` if [ ! -z "$PID" ] ; then /usr/bin/kill ${PID} 1>/dev/null 2>&1 fi ;;'stop_msg') echo "Tornado Registry stopped." ;;*) echo "Usage: /etc/rc2.d/S99wtxregd { start | stop | start_msg | stop_msg }" ;;esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -