1994-05-27 12:33:43 +00:00
|
|
|
.\" Copyright (c) 1990, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" John B. Roll Jr. and the Institute of Electrical and Electronics
|
|
|
|
.\" Engineers, Inc.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)xargs.1 8.1 (Berkeley) 6/6/93
|
1999-08-28 01:08:13 +00:00
|
|
|
.\" $FreeBSD$
|
2002-04-19 23:28:54 +00:00
|
|
|
.\" $xMach: xargs.1,v 1.2 2002/02/23 05:23:37 tim Exp $
|
1994-05-27 12:33:43 +00:00
|
|
|
.\"
|
2020-09-21 17:06:36 +00:00
|
|
|
.Dd September 21, 2020
|
1994-05-27 12:33:43 +00:00
|
|
|
.Dt XARGS 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm xargs
|
|
|
|
.Nd "construct argument list(s) and execute utility"
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 19:21:22 +00:00
|
|
|
.Nm
|
2008-01-27 16:20:36 +00:00
|
|
|
.Op Fl 0oprt
|
2002-04-19 23:28:54 +00:00
|
|
|
.Op Fl E Ar eofstr
|
2002-05-02 02:42:34 +00:00
|
|
|
.Oo
|
|
|
|
.Fl I Ar replstr
|
|
|
|
.Op Fl R Ar replacements
|
2005-12-30 23:25:41 +00:00
|
|
|
.Op Fl S Ar replsize
|
2002-05-02 02:42:34 +00:00
|
|
|
.Oc
|
2001-05-15 00:31:19 +00:00
|
|
|
.Op Fl J Ar replstr
|
2002-04-19 23:28:54 +00:00
|
|
|
.Op Fl L Ar number
|
2000-12-27 16:52:31 +00:00
|
|
|
.Oo
|
1994-05-27 12:33:43 +00:00
|
|
|
.Fl n Ar number
|
2000-12-27 16:52:31 +00:00
|
|
|
.Op Fl x
|
1994-05-27 12:33:43 +00:00
|
|
|
.Oc
|
2005-05-21 09:55:10 +00:00
|
|
|
.Op Fl P Ar maxprocs
|
1994-05-27 12:33:43 +00:00
|
|
|
.Op Fl s Ar size
|
2000-12-27 16:52:31 +00:00
|
|
|
.Op Ar utility Op Ar argument ...
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
2003-01-27 18:16:36 +00:00
|
|
|
utility reads space, tab, newline and end-of-file delimited strings
|
|
|
|
from the standard input and executes
|
1994-05-27 12:33:43 +00:00
|
|
|
.Ar utility
|
2003-01-27 18:16:36 +00:00
|
|
|
with the strings as
|
1994-05-27 12:33:43 +00:00
|
|
|
arguments.
|
|
|
|
.Pp
|
2003-01-27 18:16:36 +00:00
|
|
|
Any arguments specified on the command line are given to
|
1994-05-27 12:33:43 +00:00
|
|
|
.Ar utility
|
|
|
|
upon each invocation, followed by some number of the arguments read
|
2003-01-27 18:16:36 +00:00
|
|
|
from the standard input of
|
|
|
|
.Nm .
|
2005-12-07 12:33:52 +00:00
|
|
|
This is repeated until standard input is exhausted.
|
1994-05-27 12:33:43 +00:00
|
|
|
.Pp
|
|
|
|
Spaces, tabs and newlines may be embedded in arguments using single
|
|
|
|
(``\ '\ '')
|
|
|
|
or double (``"'') quotes or backslashes (``\e'').
|
|
|
|
Single quotes escape all non-single quote characters, excluding newlines,
|
|
|
|
up to the matching single quote.
|
|
|
|
Double quotes escape all non-double quote characters, excluding newlines,
|
|
|
|
up to the matching double quote.
|
|
|
|
Any single character, including newlines, may be escaped by a backslash.
|
|
|
|
.Pp
|
|
|
|
The options are as follows:
|
|
|
|
.Bl -tag -width indent
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl 0 , Fl -null
|
2000-03-26 15:05:40 +00:00
|
|
|
Change
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
1996-11-01 18:46:05 +00:00
|
|
|
to expect NUL
|
|
|
|
(``\\0'')
|
1997-12-13 06:34:47 +00:00
|
|
|
characters as separators, instead of spaces and newlines.
|
1996-11-01 18:46:05 +00:00
|
|
|
This is expected to be used in concert with the
|
|
|
|
.Fl print0
|
|
|
|
function in
|
2000-03-26 15:05:40 +00:00
|
|
|
.Xr find 1 .
|
2002-04-19 23:28:54 +00:00
|
|
|
.It Fl E Ar eofstr
|
|
|
|
Use
|
|
|
|
.Ar eofstr
|
|
|
|
as a logical EOF marker.
|
|
|
|
.It Fl I Ar replstr
|
|
|
|
Execute
|
|
|
|
.Ar utility
|
2002-12-27 12:15:40 +00:00
|
|
|
for each input line, replacing one or more occurrences of
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar replstr
|
2002-05-02 02:42:34 +00:00
|
|
|
in up to
|
|
|
|
.Ar replacements
|
|
|
|
(or 5 if no
|
2002-05-14 22:55:31 +00:00
|
|
|
.Fl R
|
2002-05-02 02:42:34 +00:00
|
|
|
flag is specified) arguments to
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar utility
|
|
|
|
with the entire line of input.
|
2002-05-30 06:50:52 +00:00
|
|
|
The resulting arguments, after replacement is done, will not be allowed to grow
|
2005-12-30 23:25:41 +00:00
|
|
|
beyond
|
|
|
|
.Ar replsize
|
|
|
|
(or 255 if no
|
|
|
|
.Fl S
|
|
|
|
flag is specified)
|
|
|
|
bytes; this is implemented by concatenating as much of the argument
|
2002-04-19 23:28:54 +00:00
|
|
|
containing
|
|
|
|
.Ar replstr
|
2002-05-30 06:50:52 +00:00
|
|
|
as possible, to the constructed arguments to
|
|
|
|
.Ar utility ,
|
2005-12-30 23:25:41 +00:00
|
|
|
up to
|
|
|
|
.Ar replsize
|
|
|
|
bytes.
|
|
|
|
The size limit does not apply to arguments to
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar utility
|
|
|
|
which do not contain
|
|
|
|
.Ar replstr ,
|
2002-05-30 06:50:52 +00:00
|
|
|
and furthermore, no replacement will be done on
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar utility
|
|
|
|
itself.
|
|
|
|
Implies
|
|
|
|
.Fl x .
|
2001-05-15 00:31:19 +00:00
|
|
|
.It Fl J Ar replstr
|
|
|
|
If this option is specified,
|
|
|
|
.Nm
|
|
|
|
will use the data read from standard input to replace the first occurrence of
|
|
|
|
.Ar replstr
|
|
|
|
instead of appending that data after all other arguments.
|
2004-06-28 11:18:47 +00:00
|
|
|
This option will not affect how many arguments will be read from input
|
2001-05-15 00:31:19 +00:00
|
|
|
.Pq Fl n ,
|
|
|
|
or the size of the command(s)
|
|
|
|
.Nm
|
|
|
|
will generate
|
|
|
|
.Pq Fl s .
|
|
|
|
The option just moves where those arguments will be placed in the command(s)
|
|
|
|
that are executed.
|
|
|
|
The
|
|
|
|
.Ar replstr
|
|
|
|
must show up as a distinct
|
|
|
|
.Ar argument
|
|
|
|
to
|
|
|
|
.Nm .
|
|
|
|
It will not be recognized if, for instance, it is in the middle of a
|
|
|
|
quoted string.
|
|
|
|
Furthermore, only the first occurrence of the
|
|
|
|
.Ar replstr
|
|
|
|
will be replaced.
|
|
|
|
For example, the following command will copy the list of files and
|
|
|
|
directories which start with an uppercase letter in the current
|
|
|
|
directory to
|
|
|
|
.Pa destdir :
|
|
|
|
.Pp
|
2011-03-24 13:52:59 +00:00
|
|
|
.Dl /bin/ls -1d [A-Z]* | xargs -J % cp -Rp % destdir
|
2002-04-19 23:28:54 +00:00
|
|
|
.It Fl L Ar number
|
2002-05-30 06:50:52 +00:00
|
|
|
Call
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar utility
|
|
|
|
for every
|
|
|
|
.Ar number
|
|
|
|
lines read.
|
2002-05-30 06:50:52 +00:00
|
|
|
If EOF is reached and fewer lines have been read than
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ar number
|
|
|
|
then
|
|
|
|
.Ar utility
|
|
|
|
will be called with the available lines.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl n Ar number , Fl -max-args= Ns Ar number
|
1994-05-27 12:33:43 +00:00
|
|
|
Set the maximum number of arguments taken from standard input for each
|
2003-01-27 18:16:36 +00:00
|
|
|
invocation of
|
|
|
|
.Ar utility .
|
1994-05-27 12:33:43 +00:00
|
|
|
An invocation of
|
|
|
|
.Ar utility
|
|
|
|
will use less than
|
|
|
|
.Ar number
|
|
|
|
standard input arguments if the number of bytes accumulated (see the
|
|
|
|
.Fl s
|
|
|
|
option) exceeds the specified
|
|
|
|
.Ar size
|
|
|
|
or there are fewer than
|
|
|
|
.Ar number
|
|
|
|
arguments remaining for the last invocation of
|
|
|
|
.Ar utility .
|
|
|
|
The current default value for
|
|
|
|
.Ar number
|
|
|
|
is 5000.
|
2003-03-23 18:29:52 +00:00
|
|
|
.It Fl o
|
|
|
|
Reopen stdin as
|
2003-05-21 21:07:28 +00:00
|
|
|
.Pa /dev/tty
|
2003-03-23 18:29:52 +00:00
|
|
|
in the child process before executing the command.
|
|
|
|
This is useful if you want
|
|
|
|
.Nm
|
|
|
|
to run an interactive application.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl P Ar maxprocs , Fl -max-procs= Ns Ar maxprocs
|
2002-12-21 10:17:13 +00:00
|
|
|
Parallel mode: run at most
|
|
|
|
.Ar maxprocs
|
|
|
|
invocations of
|
|
|
|
.Ar utility
|
|
|
|
at once.
|
2015-08-04 14:27:25 +00:00
|
|
|
If
|
|
|
|
.Ar maxprocs
|
|
|
|
is set to 0,
|
|
|
|
.Nm
|
|
|
|
will run as many processes as possible.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl p , Fl -interactive
|
2002-04-19 23:28:54 +00:00
|
|
|
Echo each command to be executed and ask the user whether it should be
|
|
|
|
executed.
|
2002-05-05 06:42:44 +00:00
|
|
|
An affirmative response,
|
2002-04-19 23:28:54 +00:00
|
|
|
.Ql y
|
2002-05-05 06:42:44 +00:00
|
|
|
in the POSIX locale,
|
2002-04-19 23:28:54 +00:00
|
|
|
causes the command to be executed, any other response causes it to be
|
|
|
|
skipped.
|
2002-05-05 06:42:44 +00:00
|
|
|
No commands are executed if the process is not attached to a terminal.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl r , Fl -no-run-if-empty
|
2008-01-26 12:38:19 +00:00
|
|
|
Compatibility with GNU
|
|
|
|
.Nm .
|
|
|
|
The GNU version of
|
|
|
|
.Nm
|
|
|
|
runs the
|
|
|
|
.Ar utility
|
|
|
|
argument at least once, even if
|
|
|
|
.Nm
|
|
|
|
input is empty, and it supports a
|
|
|
|
.Fl r
|
|
|
|
option to inhibit this behavior.
|
|
|
|
The
|
|
|
|
.Fx
|
|
|
|
version of
|
|
|
|
.Nm
|
|
|
|
does not run the
|
|
|
|
.Ar utility
|
|
|
|
argument on empty input, but it supports the
|
|
|
|
.Fl r
|
|
|
|
option for command-line compatibility with GNU
|
|
|
|
.Nm ,
|
|
|
|
but the
|
|
|
|
.Fl r
|
|
|
|
option does nothing in the
|
|
|
|
.Fx
|
|
|
|
version of
|
|
|
|
.Nm .
|
2002-05-02 02:42:34 +00:00
|
|
|
.It Fl R Ar replacements
|
2002-05-30 06:50:52 +00:00
|
|
|
Specify the maximum number of arguments that
|
2002-05-02 03:29:38 +00:00
|
|
|
.Fl I
|
2002-05-02 02:42:34 +00:00
|
|
|
will do replacement in.
|
2003-02-26 22:44:32 +00:00
|
|
|
If
|
|
|
|
.Ar replacements
|
|
|
|
is negative, the number of arguments in which to replace is unbounded.
|
2005-12-30 23:25:41 +00:00
|
|
|
.It Fl S Ar replsize
|
|
|
|
Specify the amount of space (in bytes) that
|
|
|
|
.Fl I
|
|
|
|
can use for replacements.
|
|
|
|
The default for
|
|
|
|
.Ar replsize
|
|
|
|
is 255.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl s Ar size , Fl -max-chars= Ns Ar size
|
1994-05-27 12:33:43 +00:00
|
|
|
Set the maximum number of bytes for the command line length provided to
|
|
|
|
.Ar utility .
|
2001-04-10 23:16:55 +00:00
|
|
|
The sum of the length of the utility name, the arguments passed to
|
1994-05-27 12:33:43 +00:00
|
|
|
.Ar utility
|
|
|
|
(including
|
|
|
|
.Dv NULL
|
2001-04-10 23:16:55 +00:00
|
|
|
terminators) and the current environment will be less than or equal to
|
|
|
|
this number.
|
1994-05-27 12:33:43 +00:00
|
|
|
The current default value for
|
|
|
|
.Ar size
|
|
|
|
is
|
|
|
|
.Dv ARG_MAX
|
2001-04-10 23:16:55 +00:00
|
|
|
- 4096.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl t , Fl -verbose
|
1994-05-27 12:33:43 +00:00
|
|
|
Echo the command to be executed to standard error immediately before it
|
|
|
|
is executed.
|
2020-09-21 17:06:36 +00:00
|
|
|
.It Fl x , Fl -exit
|
1994-05-27 12:33:43 +00:00
|
|
|
Force
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
to terminate immediately if a command line containing
|
|
|
|
.Ar number
|
|
|
|
arguments will not fit in the specified (or default) command line length.
|
|
|
|
.El
|
|
|
|
.Pp
|
2003-01-27 18:16:36 +00:00
|
|
|
If
|
1994-05-27 12:33:43 +00:00
|
|
|
.Ar utility
|
2003-01-27 18:16:36 +00:00
|
|
|
is omitted,
|
1994-05-27 12:33:43 +00:00
|
|
|
.Xr echo 1
|
|
|
|
is used.
|
|
|
|
.Pp
|
|
|
|
Undefined behavior may occur if
|
|
|
|
.Ar utility
|
|
|
|
reads from the standard input.
|
|
|
|
.Pp
|
2012-03-16 16:41:28 +00:00
|
|
|
If a command line cannot be assembled, or
|
|
|
|
cannot be invoked, or if an invocation of
|
2003-01-27 18:16:36 +00:00
|
|
|
.Ar utility
|
|
|
|
is terminated by a signal,
|
|
|
|
or an invocation of
|
|
|
|
.Ar utility
|
2012-03-16 16:41:28 +00:00
|
|
|
exits with a value of 255, the
|
|
|
|
.Nm
|
|
|
|
utility stops processing input and exits after all invocations of
|
|
|
|
.Ar utility
|
|
|
|
finish processing.
|
2005-01-17 07:44:44 +00:00
|
|
|
.Sh EXIT STATUS
|
1994-05-27 12:33:43 +00:00
|
|
|
The
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
utility exits with a value of 0 if no error occurs.
|
|
|
|
If
|
|
|
|
.Ar utility
|
2002-04-19 23:28:54 +00:00
|
|
|
cannot be found,
|
|
|
|
.Nm
|
|
|
|
exits with a value of 127, otherwise if
|
|
|
|
.Ar utility
|
|
|
|
cannot be executed,
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
2002-04-19 23:28:54 +00:00
|
|
|
exits with a value of 126.
|
1994-05-27 12:33:43 +00:00
|
|
|
If any other error occurs,
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
exits with a value of 1.
|
2020-06-11 15:14:39 +00:00
|
|
|
.Sh EXAMPLES
|
|
|
|
Create a 3x3 matrix with numbers from 1 to 9.
|
|
|
|
Every
|
|
|
|
.Xr echo 1
|
|
|
|
instance receives three lines as arguments:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
$ seq 1 9 | xargs -L3 echo
|
|
|
|
1 2 3
|
|
|
|
4 5 6
|
|
|
|
7 8 9
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Duplicate every line from standard input:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
$ echo -e "one\\ntwo\\nthree" | xargs -I % echo % %
|
|
|
|
one one
|
|
|
|
two two
|
|
|
|
three three
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Execute at most 2 concurrent instances of
|
|
|
|
.Xr find 1
|
|
|
|
every one of them using one of the directories from the standard input:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
echo -e "/usr/ports\\n/etc\\n/usr/local" | xargs -J % -P2 -n1 find % -name file
|
|
|
|
.Ed
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr echo 1 ,
|
2001-04-10 23:16:55 +00:00
|
|
|
.Xr find 1 ,
|
|
|
|
.Xr execvp 3
|
1994-05-27 12:33:43 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
1997-08-27 06:26:23 +00:00
|
|
|
.Nm
|
1994-05-27 12:33:43 +00:00
|
|
|
utility is expected to be
|
|
|
|
.St -p1003.2
|
|
|
|
compliant.
|
2001-05-15 00:31:19 +00:00
|
|
|
The
|
2020-06-11 15:14:39 +00:00
|
|
|
.Fl J , o , P , R
|
2002-05-02 03:29:38 +00:00
|
|
|
and
|
2006-09-29 15:20:48 +00:00
|
|
|
.Fl S
|
2002-05-02 03:29:38 +00:00
|
|
|
options are non-standard
|
2001-05-15 00:31:19 +00:00
|
|
|
.Fx
|
2002-05-02 03:29:38 +00:00
|
|
|
extensions which may not be available on other operating systems.
|
2002-06-10 22:59:59 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2005-12-07 12:33:52 +00:00
|
|
|
utility appeared in PWB UNIX.
|
2001-04-10 23:16:55 +00:00
|
|
|
.Sh BUGS
|
|
|
|
If
|
|
|
|
.Ar utility
|
2001-04-13 09:15:16 +00:00
|
|
|
attempts to invoke another command such that the number of arguments or the
|
2001-04-10 23:16:55 +00:00
|
|
|
size of the environment is increased, it risks
|
|
|
|
.Xr execvp 3
|
|
|
|
failing with
|
2001-04-13 09:15:16 +00:00
|
|
|
.Er E2BIG .
|
2004-08-02 03:07:42 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility does not take multibyte characters into account when performing
|
|
|
|
string comparisons for the
|
|
|
|
.Fl I
|
|
|
|
and
|
|
|
|
.Fl J
|
|
|
|
options, which may lead to incorrect results in some locales.
|