Package | Description |
---|---|
org.unix4j |
Provides a single class
Unix4j with static methods
serving as entry point to build commands and command chains joining several
commands. |
org.unix4j.unix |
Provides implementations for commands inspired by well known unix commands.
|
org.unix4j.unix.wc |
Contains private classes used by the
wc command. |
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
File... files)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
Input... inputs)
Executes a one or more counts, depending on the given options, in
each of the given inputs and writes them to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
String[] paths)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options)
Executes a one or more counts, depending on the given options, in
the standard input and writes them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options) |
R |
Wc.Interface.wc(WcOptions options)
Executes a one or more counts, depending on the given options, in
the standard input and writes them to the standard output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
File... files)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
File... files) |
R |
Wc.Interface.wc(WcOptions options,
File... files)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
Input... inputs)
Executes a one or more counts, depending on the given options, in
each of the given inputs and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
Input... inputs) |
R |
Wc.Interface.wc(WcOptions options,
Input... inputs)
Executes a one or more counts, depending on the given options, in
each of the given inputs and writes them to the standard
output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
String[] paths)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
String[] paths) |
R |
Wc.Interface.wc(WcOptions options,
String[] paths)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Modifier and Type | Class and Description |
---|---|
class |
WcOption
Options for the
wc command. |
static class |
WcOptions.Default
Default implementation for a modifiable option set.
|
class |
WcOptionSet_lmw
|
Modifier and Type | Field and Description |
---|---|
static WcOptions |
WcOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<WcOptions> |
WcOptions.CONVERTER
Value converter for
WcOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
WcOptions |
WcArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
WcCommand |
WcFactory.wc(WcOptions options) |
WcCommand |
WcFactory.wc(WcOptions options,
File... files) |
WcCommand |
WcFactory.wc(WcOptions options,
Input... inputs) |
WcCommand |
WcFactory.wc(WcOptions options,
String[] paths) |
Constructor and Description |
---|
WcArguments(WcOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.