diff options
author | imp <imp@FreeBSD.org> | 1996-11-01 18:46:05 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1996-11-01 18:46:05 +0000 |
commit | bb3c2821a8ce93edc2bc6ab1ddcfd0cf8eaa6a5f (patch) | |
tree | 86d174ff260a034a928372b3750d921a7b3cf648 /usr.bin/xargs/xargs.1 | |
parent | 8cf03fedfcf64ae6fece48a91405127bd03433e0 (diff) | |
download | FreeBSD-src-bb3c2821a8ce93edc2bc6ab1ddcfd0cf8eaa6a5f.zip FreeBSD-src-bb3c2821a8ce93edc2bc6ab1ddcfd0cf8eaa6a5f.tar.gz |
Reviewed by: Warner Losh <imp@village.org>
Submitted by: Marc Slemko <marcs@znep.com>
Obtained from: OpenBSD
Add -0 for reading the results of find -0.
Diffstat (limited to 'usr.bin/xargs/xargs.1')
-rw-r--r-- | usr.bin/xargs/xargs.1 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.bin/xargs/xargs.1 b/usr.bin/xargs/xargs.1 index e703c43..ab10647 100644 --- a/usr.bin/xargs/xargs.1 +++ b/usr.bin/xargs/xargs.1 @@ -43,6 +43,7 @@ .Nd "construct argument list(s) and execute utility" .Sh SYNOPSIS .Nm xargs +.Op Fl 0 .Op Fl t .Oo Op Fl x .Fl n Ar number @@ -79,6 +80,16 @@ Any single character, including newlines, may be escaped by a backslash. .Pp The options are as follows: .Bl -tag -width indent +.It Fl 0 +Changes +.Nm xargs +to expect NUL +(``\\0'') +characters as seperators, instead of spaces and newlines. +This is expected to be used in concert with the +.Fl print0 +function in +.Nm find . .It Fl n Ar number Set the maximum number of arguments taken from standard input for each invocation of the utility. |