| 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.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,
Input... inputs)
Reads the lines from the specified inputs 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 |
|---|---|
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.
|
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) |
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.
|
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,
File... files) |
R |
Cat.Interface.cat(CatOptions options,
Input... inputs)
Reads the lines from the specified inputs and writes them to the
standard output; the given options define the details of the output
format.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(CatOptions options,
Input... inputs)
Reads the lines from the specified inputs and writes them to the
standard output; the given options define the details of the output
format.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(CatOptions options,
Input... inputs) |
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.
|
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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(CatOptions options,
String... paths) |
| 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,
Input... inputs) |
CatCommand |
CatFactory.cat(CatOptions options,
String... paths) |
| Constructor and Description |
|---|
CatArguments(CatOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2025. All rights reserved.