umask
Print the current value of the file creation mode mask, or
set it to
ExamplesTurn off write permission for others:
umask 002 Produces file permission -rw-rw-r- Turn off all permissions for group and others:
umask 077 Produces file permission -rw---- Note that you can omit leading zeroes. |
|