📄 eval_onescript.sh
字号:
#!/bin/sh## eval_onescript.sh SCRIPT [TESTNUMBER [HEADERONLY] ]## Evaluates one test program, and helps it out by doing a bit of setup# for it. It does this by sourcing some configuration files for it# first, and if it exited without calling FINISHED, call it.## Not intended to be a tool for the common user! Called by RUNTESTS# directly instead.#testnum=1if [ "x$2" != "x" ]; then testnum=$2fiexport testnumunset SNMP_HEADERONLYif [ "x$3" = "xyes" ]; then SNMP_HEADERONLY=yesfiexport SNMP_HEADERONLY. TESTCONF.sh. eval_tools.shECHO "$testnum: ". ./$1# We shouldn't get here...# If we do, it means they didn't exit properly.# So we will.STOPAGENT # Just in case.FINISHED
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -