Changing a range of values in a list
You can change a range of elements in the list to a new value by specifying a subscript range.
For example:
(sdb) u 0 quotes[4..6] 67.89
This command changes the three values that begin at index entries 4
, 5
,
and 6
in the list that is named quotes
to
the new value of 67.89
.