M
mac8500
Tought that would work .. but doesn't look like it.
my $_ = `$path/find /usr/local/ -print -ls | $path/awk '{print
$5,$6,$11}' | $path/grep "[a-zA-Z]"`;
foreach $_ (sort keys %find) {
( $uid, $gid, $file, ) = split();
$find{ $uid }{ $gid } = $file;
}
What i'm i doing wrong here?
my $_ = `$path/find /usr/local/ -print -ls | $path/awk '{print
$5,$6,$11}' | $path/grep "[a-zA-Z]"`;
foreach $_ (sort keys %find) {
( $uid, $gid, $file, ) = split();
$find{ $uid }{ $gid } = $file;
}
What i'm i doing wrong here?