Add documentation for umask

darcs-hash:20051017143050-ac50b-0943033514159966b93adcb4073fa52cc8925597.gz
This commit is contained in:
axel
2005-10-18 00:30:50 +10:00
parent 1a5a49dcae
commit 4fb2dc3f55
2 changed files with 23 additions and 2 deletions

21
doc_src/umask.txt Normal file
View File

@@ -0,0 +1,21 @@
\section umask umask - Set or get the shells resurce usage limits
\subsection umask-synopsis Synopsis
<code>umask [OPTIONS] [MASK]</code>
\subsection umask-description Description
With no argument, the current file-creation mask is printed, if an
argument is specified, it is the new file creation mask.
- <code>-h</code> or <code>--help</code> print this message
- <code>-S</code> or <code>--symbolic</code> prints the file-creation mask in symbolic form instead of octal form. Use <code>man chmod</code> for more information.
- <code>-p</code> or <code>--as-command</code> prints any output in a form that may be reused as input
The umask implementation in fish should behave identically to the one in bash.
\subsection umask-example Example
<code>umask 600</code> sets the file creation mask to read and write for the owner and no permissions at all for any other users.