<< back to sysax.com Product page |
The listappend command can be used to append a single list item or an entire list to an existing list.
Exhibit 3.5. Syntax of command for appending list
listappend <targetlist>, <list item or list to be appended> |
Exhibit 3.6. Examples of command for appending single list item or list
listappend @biglist, $myitem; #append a list item to a list listappend @biglist, @mylist; #append a list to another list |