Voting

: five plus four?
(Example: nine)

The Note You're Voting On

andi<at>splitbrain.org
20 years ago
To play around with umasks and permissions use this little fragment:

<?
$umask = 0012;
$perm = 0777;
printf("umask: %04o perm: %04o result: %04o\n",
$umask,$perm,$perm & (0777 - $umask));
?>

<< Back to user notes page

To Top