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.tail |
Contains private classes used by the
tail command. |
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.tail(TailOptions options,
long count,
File... files)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.tail(TailOptions options,
long count,
Input... inputs)
Reads the last
count lines or characters from each of the
specified inputs and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.tail(TailOptions options,
long count,
String... paths)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(TailOptions options,
long count)
Reads the last
count lines or characters from the standard
input and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(TailOptions options,
long count) |
R |
Tail.Interface.tail(TailOptions options,
long count)
Reads the last
count lines or characters from the standard
input and writes them to the standard output. |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(TailOptions options,
long count,
File... files)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(TailOptions options,
long count,
File... files) |
R |
Tail.Interface.tail(TailOptions options,
long count,
File... files)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(TailOptions options,
long count,
Input... inputs)
Reads the last
count lines or characters from each of the
specified inputs and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(TailOptions options,
long count,
Input... inputs) |
R |
Tail.Interface.tail(TailOptions options,
long count,
Input... inputs)
Reads the last
count lines or characters from each of the
specified inputs and writes them to the standard output. |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(TailOptions options,
long count,
String... paths)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(TailOptions options,
long count,
String... paths) |
R |
Tail.Interface.tail(TailOptions options,
long count,
String... paths)
Reads the last
count lines or characters from each of the
specified files and writes them to the standard output. |
Modifier and Type | Class and Description |
---|---|
class |
TailOption
Options for the
tail command. |
static class |
TailOptions.Default
Default implementation for a modifiable option set.
|
class |
TailOptionSet_cqs
|
Modifier and Type | Field and Description |
---|---|
static TailOptions |
TailOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<TailOptions> |
TailOptions.CONVERTER
Value converter for
TailOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
TailOptions |
TailArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
TailCommand |
TailFactory.tail(TailOptions options,
long count) |
TailCommand |
TailFactory.tail(TailOptions options,
long count,
File... files) |
TailCommand |
TailFactory.tail(TailOptions options,
long count,
Input... inputs) |
TailCommand |
TailFactory.tail(TailOptions options,
long count,
String... paths) |
Constructor and Description |
---|
TailArguments(TailOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.