Voting

: min(two, eight)?
(Example: nine)

The Note You're Voting On

maulwuff at gmx dot de
17 years ago
umask takes away the given values from the standard mask 777.
A graphical view shows this better:

standard:
rwxrwxrwx = 777
will get with umask 002:
rwxrwxr-x = 775
or will get with umask 077:
rwx------ = 700

and so on.

<< Back to user notes page

To Top