![]() |
|
"be consistent" | |
PerlMonks |
perlfunc:umaskby gods (Initiate) |
on Aug 24, 1999 at 22:41 UTC ( [id://192]=perlfunc: print w/replies, xml ) | Need Help?? |
umaskSee the current Perl documentation for umask. Here is our local, out-dated (pre-5.6) version: ![]() umask - set file creation mode mask
![]() umask EXPR umask
![]() Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask.
If
Remember that a umask is a number, usually given in octal; it is not a string of octal digits. See also oct, if all you have is a string. |
|