http://www.perlmonks.org?node_id=427556


in reply to append to registry value

Not that I know too much about the registry, but
can't you just read the old line, append the new
values and write it back again?
pseudocode
my $oldvalue = read_value_from_registry(); my $value = "the thing you want to append"; my $newvalue = $oldvalue.$value; write_to_registry($newvalue);

si_lence