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.builder |
Defines interfaces and implementations used to create a command or a chain of
joined commands.
|
org.unix4j.unix |
Provides implementations for commands inspired by well known unix commands.
|
org.unix4j.unix.cat |
Contains private classes used by the
cat command. |
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.cat(CatOptions options,
File... files)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
static Unix4jCommandBuilder |
Unix4j.cat(CatOptions options,
String... paths)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(CatOptions options) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(CatOptions options)
Reads the lines from the standard input and writes them to the
standard output; the given options define the details of the output
format.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(CatOptions options,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(CatOptions options,
File... files)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(CatOptions options,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(CatOptions options,
String... paths)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
Modifier and Type | Method and Description |
---|---|
R |
Cat.Interface.cat(CatOptions options)
Reads the lines from the standard input and writes them to the
standard output; the given options define the details of the output
format.
|
R |
Cat.Interface.cat(CatOptions options,
File... files)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
R |
Cat.Interface.cat(CatOptions options,
String... paths)
Reads the lines from the specified files and writes them to the
standard output; the given options define the details of the output
format.
|
Modifier and Type | Class and Description |
---|---|
class |
CatOption
Options for the
cat command. |
static class |
CatOptions.Default
Default implementation for a modifiable option set.
|
class |
CatOptionSet_bns
|
class |
CatOptionSet_bs
|
class |
CatOptionSet_ns
|
Modifier and Type | Field and Description |
---|---|
static CatOptions |
CatOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<CatOptions> |
CatOptions.CONVERTER
Value converter for
CatOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
CatOptions |
CatArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
CatCommand |
CatFactory.cat(CatOptions options) |
CatCommand |
CatFactory.cat(CatOptions options,
File... files) |
CatCommand |
CatFactory.cat(CatOptions options,
String... paths) |
Constructor and Description |
---|
CatArguments(CatOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2012-2018 unix4j (tools4j), Ben Warner and Marco Terzer. All rights reserved.