aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/umask.txt
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-22 20:06:05 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-22 20:06:05 +1000
commitfc5e0ab367bfa76abb6d5717276e5cfd506697af (patch)
treeb1792df14c50e0ba177a6372171e2c25ce5d53f7 /doc_src/umask.txt
parent6139df926b75b0bdbe35d49feed3e3f1c52b51ea (diff)
Fix broken umask, add completions, documentation cleanups, etc
darcs-hash:20051022100605-ac50b-9b6ece502b203bf7690583d57b5b0713de30890c.gz
Diffstat (limited to 'doc_src/umask.txt')
-rw-r--r--doc_src/umask.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/doc_src/umask.txt b/doc_src/umask.txt
index 7995543d..cda5ff83 100644
--- a/doc_src/umask.txt
+++ b/doc_src/umask.txt
@@ -7,15 +7,23 @@
\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.
+argument is specified, it is the new file creation mask. The mask may
+be specified as an octal number, in which case it is interpreted as
+the rights that should be masked away, i.e. it is the inverse of the
+file permissions any new files will have. If a synbolic mask is
+specified, the actual file permission bits, and not the inverse, are
+specified.
- <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.
+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.
+<code>umask 177</code> or <code>umask u=rw</code>sets the file
+creation mask to read and write for the owner and no permissions at
+all for any other users.