Package | Description |
---|---|
org.unix4j.unix |
Provides implementations for commands inspired by well known unix commands.
|
org.unix4j.unix.xargs |
Contains private classes used by the
xargs command. |
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
int maxArgs) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
long maxLines) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
long maxLines,
int maxArgs) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
int maxArgs) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines,
int maxArgs) |
R |
Xargs.Interface.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.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
String eof,
long maxLines,
int maxArgs) |
R |
Xargs.Interface.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.
|
Modifier and Type | Class and Description |
---|---|
class |
XargsOption
Options for the
xargs command. |
static class |
XargsOptions.Default
Default implementation for a modifiable option set.
|
class |
XargsOptionSet_rtxz
|
Modifier and Type | Field and Description |
---|---|
static XargsOptions |
XargsOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<XargsOptions> |
XargsOptions.CONVERTER
Value converter for
XargsOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
XargsOptions |
XargsArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
XargsCommand |
XargsFactory.xargs(XargsOptions options) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
int maxArgs) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
long maxLines) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
long maxLines,
int maxArgs) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
String delimiter) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
String delimiter,
int maxArgs) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
String delimiter,
long maxLines) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
String delimiter,
long maxLines,
int maxArgs) |
XargsCommand |
XargsFactory.xargs(XargsOptions options,
String delimiter,
String eof,
long maxLines,
int maxArgs) |
Constructor and Description |
---|
XargsArguments(XargsOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.