- or download this
push @{ $machinearray{$machine} }, $pwline;
- or download this
my %machines = (
machine1 => {
...
user3 => 'pwline3',
},
);
- or download this
if (!exists $machines{$machine}{$uname}) {
## User doesn't exist. Add him/her.
$machines{$machine}{$uname} = $pwline;
}