Well to be honest I don't really know if this is a
"better" solution than yours, but it reads more like
the way I think. The y/ /0/ statement is only there
because the interpreter was giving me a warning about a
bitwise_and with a " " (there may be a better way to do
this with options to sprintf).
So, in the spitrit of TIMTOWTDI.
sub ReturnFileMask($) {
my $Numeric=sprintf "%3o",(shift)&07777;
my $Mask='-xw@r';
my $Tmp="-";
foreach(split //,$Numeric)
{
y/ /0/;
$Tmp .= substr($Mask, $_ & 4, 1) .
substr($Mask, $_ & 2, 1) .
substr($Mask, $_ & 1, 1);
}
return $Tmp;
}
or alternitively, my second attempt, which doesn't ponce about with the bit wise ands. I think I much prefer this:
sub ReturnFileMask($) {
my $Numeric=sprintf "%3o",(shift)&07777;
my $Tmp="-";
foreach(split //,$Numeric)
{
y/ /0/;
$Tmp .= substr('----rrrr', $_, 1) .
substr('--ww--ww', $_, 1) .
substr('-x-x-x-x', $_, 1);
}
return $Tmp;
}
Or, how about the really simple
sub ReturnFileMask($) {
my $Tmp="-";
foreach(split //,sprintf "%3o",(shift)&07777)
{
y/ /0/;
$Tmp .= ("---", "--x", "-w-", "-wx", "r--", "r-x", "rw-", "rwx")[$
+_];
}
return $Tmp;
}
Nuance
Baldrick, you wouldn't see a subtle plan if it painted
itself purple and danced naked on top of a harpsichord,
singing "Subtle plans are here again!"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.