- or download this
sub printattr{
my $file = shift;
...
}
print "]\n";
}
- or download this
use feature 'state';
...
print $attrs->[$_ < $maxi ? $_ : $maxi] for split //, (stat $file)
+[2];
print "]\n";
}
- or download this
sub print_attr
{
...
print $attrs->[$_] for split //, (stat $file)[2];
print "]\n";
}