5.8.3. Discussion
You can store only scalar values in a hash. References, however, are
scalars. This solves the problem of storing multiple values for one
key by making $hash{$key} a reference to an array
containing values for $key. The normal hash
operations—insertion, deletion, iteration, and testing for
existence—can now be written in terms of array operations like
push, splice, and
foreach.
This code shows simple insertion into the hash. It processes the
output of who(1) on Unix machines and outputs a
terse listing of users and the ttys they're logged in on:
%ttys = ( );
open(WHO, "who|") or die "can't open who: $!";
while (<WHO>) {
($user, $tty) = split;
push( @{$ttys{$user}}, $tty );
}
foreach $user (sort keys %ttys) {
print "$user: @{$ttys{$user}}\n";
}