diff options
author | Pádraig Brady <P@draigBrady.com> | 2008-12-01 02:09:19 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2008-12-01 02:09:19 +0000 |
commit | 00b5a2db33cddadf641ae2f01534514314d7e817 (patch) | |
tree | a8c936c2ecb95023ef0ad2f724c2d4b3334f841f /doc | |
parent | e34894bf3f52f1600e5a334ddeec9c2a7e431853 (diff) | |
download | coreutils-00b5a2db33cddadf641ae2f01534514314d7e817.tar.xz |
doc: Improve description of --files0-from option
* doc/coreutils.texi: Describe the most common
usage of --files0-from=- to read names from stdin.
* src/du.c: Likewise.
* src/sort.c: Likewise.
* src/wc.c: Likewise.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index cf56cadb2..0e2f1500e 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -3266,17 +3266,18 @@ Print only the maximum line lengths. @c This is commented out to avoid a texi2dvi failure. @c texi2dvi (GNU Texinfo 4.11) 1.104 @c @cindex including files from @command{\cmd\} -Rather than processing files named on the command line, process those -named in file @var{FILE}; each name is terminated by a null byte. +Disallow processing files named on the command line, and instead process +those named in file @var{FILE}; each name being terminated by a NUL byte. This is useful \withTotalOption\ when the list of file names is so long that it may exceed a command line length limitation. In such cases, running @command{\cmd\} via @command{xargs} is undesirable because it splits the list into pieces and makes @command{\cmd\} print \subListOutput\ for each sublist rather than for the entire list. -One way to produce a list of null-byte-terminated file names is with @sc{gnu} +One way to produce a list of NUL terminated file names is with @sc{gnu} @command{find}, using its @option{-print0} predicate. -Do not specify any @var{FILE} on the command line when using this option. +If @var{FILE} is @samp{-} then the NUL terminated file names +are read from standard input. @end macro @filesZeroFromOption{wc,,a total} |