📄 s99wlmd
字号:
#!/bin/sh# Start or Stop the Wind License Manager Daemon.# Modify the following line to specify the Tornado installation directory.wind_base=/u/windWLMD=$wind_base/host/sun4-solaris2/bin/wlmdLICDIR=$wind_base/.wind/licensecase "$1" in'start') if [ -x $WLMD ] ; then echo "Wind License Management starting." $WLMD -e $LICDIR -s0 -m 50k -l /tmp/wlmdlog -v 3 fi ;;'stop') PID=`/usr/bin/ps -e -u 0|/usr/bin/fgrep wlmd |/usr/bin/awk '{print $1}'` if [ ! -z "$PID" ] ; then /usr/bin/kill ${PID} 1>/dev/null 2>&1 fi ;;*) echo "Usage: /etc/rc2.d/S99wlmd { start | stop }" ;;esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -