📄 s992ppl
字号:
#!/bin/sh# Start or Stop the Wind License Manager Daemon.PPL=/usr/bin/pplDEV=/dev/ptym/ptyr# Minimum and maximum VxSim 'processor numbers'MINPROCNUM=0MAXPROCNUM=0case "$1" in'start') if [ -x $PPL ] ; then echo "Starting ppl (SLIP) processes for VxSim" N=$MINPROCNUM while [ $N -le $MAXPROCNUM ] ; do echo $PPL -o -t $DEV$N 192.168.1.$N N=`expr $N + 1` done fi ;;'start_msg') echo "Wind License Management starting." ;;'stop') # Do nothing ;;'stop_msg') echo "Wind License Management stopping." ;;*) echo "Usage: /etc/rc2.d/S99wlmd { start | stop | start_msg | stop_msg }" ;;esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -