📄 rcsoccersim.in
字号:
#! /bin/shBASEPATH=@RCSSBASE@if [ x"$BASEPATH" != x ] ; then if [ x"$LD_LIBRARY_PATH" = x ] ; then LD_LIBRARY_PATH=$BASEPATH/lib else LD_LIBRARY_PATH=$BASEPATH/lib:$LD_LIBRARY_PATH fi export LD_LIBRARY_PATHfi#--------------------------------------------------# option#SERV=`which rcssserver 2> /dev/null`if test $? -eq 1; then echo "Error: rcssserver can not be found in your PATH" echo "" exit 1fiif test $# -eq 0; then if test "$RCSSMONITOR"; then MON=`which "$RCSSMONITOR" 2> /dev/null` if test $? -eq 1; then echo "Error: cannot find the monitor specified by RCSSMONITOR: $RCSSMONITOR" echo "" exit 1 fi else MON=`which rcssmonitor 2> /dev/null` if test $? -eq 1; then MON=`which rcssmonitor_classic 2> /dev/null` if test $? -eq 1; then echo "Error: No monitors can be found in your PATH and the" echo " RCSSMONITOR environment variable is not set. Please" echo " add rcssmonitor or rcssmonitor_classic to you PATH," echo " or set the RCSSMONITOR environment variable to the" echo " executable you wish to use." echo "" exit 1 fi fi fielse while [ $# -gt 0 ] do case $1 in -frameview) MON=`which rcssmonitor 2> /dev/null` if test $? -eq 1; then echo "Error: rcssmonitor found in your PATH" echo "" exit 1 fi ;; -classic) MON=`which rcssmonitor_classic 2> /dev/null` if test $? -eq 1; then echo "Error: rcssmonitor_classic found in your PATH" echo "" exit 1 fi ;; *) echo "Error: unsupported option" echo "Usage: $0 [(-frameview)|(-classic)][(-nostdoutsaver)]" echo "" ;; esac shift 1 donefi#--------------------------------------------------# set handler#trap kill_server INT#--------------------------------------------------# start server#$SERV &PID=$!#--------------------------------------------------# kill server#kill_server(){ kill -s INT $PID echo "" exit 0}#--------------------------------------------------# start monitor#sleep 1$MONkill_server
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -