R
- the generic return type for all command signature methods
to support different implementor types; the methods of a
command factory for instance returns a command instance;
command builders can also implement this interface, but their
methods return the builder itself enabling for chained method
invocation to create joined commandspublic static interface Xargs.Interface<R> extends CommandInterface<R>
Modifier and Type | Method and Description |
---|---|
R |
xargs()
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(long maxLines)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(long maxLines,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(String... args)
Reads items from the standard input, delimited by blanks and
newlines or a specified delimiter, and provides variables for the
items read from the standard input.
|
R |
xargs(String delimiter)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(String delimiter,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(String delimiter,
long maxLines)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(String delimiter,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(String delimiter,
String eof,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
long maxLines)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
long maxLines,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
String delimiter)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
String delimiter,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
String delimiter,
long maxLines)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
String delimiter,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R |
xargs(XargsOptions options,
String delimiter,
String eof,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
R xargs()
<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String... args)
Options can be specified by acronym (with a leading dash "-") or by long name (with two leading dashes "--"). Operands other than the default "--maxArgs" operand have to be prefixed with the operand name.
args
- String arguments defining the options and operands for the command.
Options can be specified by acronym (with a leading dash "-") or by
long name (with two leading dashes "--"). Operands other than the
default "--maxArgs" operand have to be prefixed with the operand
name (e.g. "--maxLines" for a subsequent line count operand value).<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String delimiter)
delimiter
- Input items are terminated by the specified characters.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(long maxLines)
maxLines
nonblank input lines (or possibly fewer
for the last invocation with the remaining lines at the end of the
file). The item variables are usually passed to the invoked command
as arguments.maxLines
- Use at most maxLines nonblank input lines per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(int maxArgs)
maxArgs
items read from the standard input (or
possibly fewer for the last invocation with the remaining items at
the end of the file). The item variables are usually passed to the
invoked command as arguments.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(long maxLines, int maxArgs)
maxLines
nonblank input lines or maxArgs
items (whichever occurs first). Fewer lines or items may be used for
the last invocation with the remaining lines at the end of the file.
The item variables are usually passed to the invoked command as
arguments.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String delimiter, long maxLines)
maxLines
nonblank input lines (or possibly fewer
for the last invocation with the remaining lines at the end of the
file). The item variables are usually passed to the invoked command
as arguments.delimiter
- Input items are terminated by the specified characters.maxLines
- Use at most maxLines nonblank input lines per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String delimiter, int maxArgs)
maxArgs
items read from the standard input (or
possibly fewer for the last invocation with the remaining items at
the end of the file). The item variables are usually passed to the
invoked command as arguments.delimiter
- Input items are terminated by the specified characters.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String delimiter, long maxLines, int maxArgs)
maxLines
nonblank input lines or maxArgs
items (whichever occurs first). Fewer lines or items may be used for
the last invocation with the remaining lines at the end of the file.
The item variables are usually passed to the invoked command as
arguments.delimiter
- Input items are terminated by the specified characters.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(String delimiter, String eof, long maxLines, int maxArgs)
eof
string occurs as a line of input,
the rest of the input is ignored. The command following after xargs
is executed once for every maxLines
nonblank input lines or
maxArgs
items (whichever occurs first). Fewer lines or items
may be used for the last invocation with the remaining lines at the
end of the file. The item variables are usually passed to the
invoked command as arguments.delimiter
- Input items are terminated by the specified characters.eof
- If the end of file string occurs as a line of input, the rest of the
input is ignored.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options)
options
- The options defining command behavior.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, String delimiter)
options
- The options defining command behavior.delimiter
- Input items are terminated by the specified characters.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, long maxLines)
maxLines
nonblank input lines (or possibly fewer
for the last invocation with the remaining lines at the end of the
file). The item variables are usually passed to the invoked command
as arguments.options
- The options defining command behavior.maxLines
- Use at most maxLines nonblank input lines per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, int maxArgs)
maxArgs
items read from the standard input (or
possibly fewer for the last invocation with the remaining items at
the end of the file). The item variables are usually passed to the
invoked command as arguments.options
- The options defining command behavior.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, long maxLines, int maxArgs)
maxLines
nonblank input lines or maxArgs
items (whichever occurs first). Fewer lines or items may be used for
the last invocation with the remaining lines at the end of the file.
The item variables are usually passed to the invoked command as
arguments.options
- The options defining command behavior.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, String delimiter, long maxLines)
maxLines
nonblank input lines (or possibly fewer
for the last invocation with the remaining lines at the end of the
file). The item variables are usually passed to the invoked command
as arguments.options
- The options defining command behavior.delimiter
- Input items are terminated by the specified characters.maxLines
- Use at most maxLines nonblank input lines per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, String delimiter, int maxArgs)
maxArgs
items read from the standard input (or
possibly fewer for the last invocation with the remaining items at
the end of the file). The item variables are usually passed to the
invoked command as arguments.options
- The options defining command behavior.delimiter
- Input items are terminated by the specified characters.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, String delimiter, long maxLines, int maxArgs)
maxLines
nonblank input lines or maxArgs
items (whichever occurs first). Fewer lines or items may be used for
the last invocation with the remaining lines at the end of the file.
The item variables are usually passed to the invoked command as
arguments.options
- The options defining command behavior.delimiter
- Input items are terminated by the specified characters.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsR xargs(XargsOptions options, String delimiter, String eof, long maxLines, int maxArgs)
eof
string occurs as a line of input,
the rest of the input is ignored. The command following after xargs
is executed once for every maxLines
nonblank input lines or
maxArgs
items (whichever occurs first). Fewer lines or items
may be used for the last invocation with the remaining lines at the
end of the file. The item variables are usually passed to the
invoked command as arguments.options
- The options defining command behavior.delimiter
- Input items are terminated by the specified characters.eof
- If the end of file string occurs as a line of input, the rest of the
input is ignored.maxLines
- Use at most maxLines nonblank input lines per command invocation.maxArgs
- Use at most maxArgs arguments per command invocation.<R>
defined by the implementing class;
the command itself returns no value and writes its result to the
standard output; see class level parameter comments for more
detailsCopyright © 2024. All rights reserved.