我正在尝试使用命令行参数将参数传递给思博伦测试中心工具,其中我传递的是插槽,端口,帧大小和负载。我想将Slots和ports存储在数组中,其中端口数是动态的。 我尝试使用cmdline的简单代码来处理固定端口
package require cmdline
set parameters {
{s.arg "" "Slot"}
{p.arg "" "Port"}
{l.arg "100" "Load"}
{f.arg "256" "Framesize"}
{debug "Turn on debugging, default=off"}
}
#set option(l) 100
set usage "- A simple script to demo cmdline parsing"
if {[catch {array set options [cmdline::getoptions ::argv $parameters $usage]}]} {
puts [cmdline::usage $parameters $usage]
} else {
parray options
}
#puts [array get options]
puts $options(l)
puts $options(f)
脚本输出:
C:\Tcl\bin>tclsh opt.tcl -s 1 -f 128
options(debug) = 0
options(f) = 128
options(l) = 100
options(p) =
options(s) = 1
100
128
这里我想一次传递每个插槽的所有端口,
tclsh opt.tcl -s 1 2 -p 11 12 13 14 -f 256 -l 100
其中插槽为1和2,每个插槽中的端口为11,12,13,14,需要创建插槽和端口阵列。你能否提出一些实现这一目标的方法。
答案 0 :(得分:0)
尝试
tclsh opt.tcl -s "1 2" -p "11 12 13 14" -f 256 -l 100
至少在Windows 10下它适用于我。问题是插槽和端口列表每个都需要一个值:引号确保。
答案 1 :(得分:0)
我尝试了以下方法并进行了一些更正:
set arglen [llength $argv]
while {$index < $arglen} {
set arg [lindex $argv $index]
#puts $arg
switch -exact -- $arg {
-s {
set args($arg) [lindex $argv [incr index]]
set slot($y) $args($arg)
incr y
}
-p {
set args($arg) [lindex $argv [incr index]]
set port($z) $args($arg)
incr z
}
-l {
set args($arg) [lindex $argv [incr index]]
global Load
set Load $args($arg)
}
-f {
set args($arg) [lindex $argv [incr index]]
set frameLength $args($arg)
}
}
incr index
}
要运行的命令:
C:\Tcl\bin>tclsh l1.tcl -s 1 -p 11 -p 12 -l 10 -f 1