"be consistent" | |
PerlMonks |
How do I skip some return values?by faq_monk (Initiate) |
on Oct 08, 1999 at 00:27 UTC ( [id://682]=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version: One way is to treat the return values as a list and index into it:
$dir = (getpwnam($user))[7]; Another way is to use undef as an element on the left-hand-side:
($dev, $ino, undef, undef, $uid, $gid) = stat($file);
|
|