Re: Multiple sets in one command/session?

Juergen Schoenwaelder (schoenw@cs.utwente.nl)
Wed, 3 Jul 1996 20:42:22 +0200

"Martone Mike" <martonem@bah.com> wrote:

I have a device that does not like to have a table row set consecutively
with sets, but with all OIDs in one big set command. I.E>

$s set $oid $value
$s set $oid2 $val2
$s set $oid3 $val3

is NOT good. How can I do this:

$s set $oid $value $oid2 $val2 $oid3 $val3

Can I just make a big list? WHat is the format of this command.

Try

$s set [list [list $oid $value] [list $oid2 $value2] ]

and read the man page. This is all documented.

Juergen