- or download this
my %vars = (
'dir-mode' => \$d_mode,
...
}
${ $vars{$testy} } = $config{$test}{$tester}{$testy};
}
- or download this
my $wanted_this_time = {
mode => $wanted_mode,
owner => $wanted_owner,
group => $wanted_group,
};
- or download this
my $wanted = {
if_directory => {
...
if_link => { ... }
if_file => { ... }
};
- or download this
my %wanted;
my %validfile = map +($_ => 1), qw/ dir file link /;
...
change_group($_, $wanted->{'group'});
}
}
- or download this
my %filetypes = (
'dir' => sub { -d _ },
...
}
}
}