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.uniq |
Contains private classes used by the
uniq command. |
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.uniq(UniqOptions options,
File file)
Reads from the specified input
file and compares adjacent
lines, writing one copy of each input line to the standard output. |
static Unix4jCommandBuilder |
Unix4j.uniq(UniqOptions options,
String path)
Reads the file specified by its
path and compares adjacent
lines, writing one copy of each input line to the standard output. |
Modifier and Type | Method and Description |
---|---|
R |
Uniq.Interface.uniq(UniqOptions options)
Reads from the standard input and compares adjacent lines, writing
one copy of each input line to the standard output.
|
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(UniqOptions options)
Reads from the standard input and compares adjacent lines, writing
one copy of each input line to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.uniq(UniqOptions options) |
R |
Uniq.Interface.uniq(UniqOptions options,
File file)
Reads from the specified input
file and compares adjacent
lines, writing one copy of each input line to the standard output. |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(UniqOptions options,
File file)
Reads from the specified input
file and compares adjacent
lines, writing one copy of each input line to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.uniq(UniqOptions options,
File file) |
R |
Uniq.Interface.uniq(UniqOptions options,
String path)
Reads the file specified by its
path and compares adjacent
lines, writing one copy of each input line to the standard output. |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(UniqOptions options,
String path)
Reads the file specified by its
path and compares adjacent
lines, writing one copy of each input line to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.uniq(UniqOptions options,
String path) |
Modifier and Type | Class and Description |
---|---|
class |
UniqOption
Options for the
uniq command. |
static class |
UniqOptions.Default
Default implementation for a modifiable option set.
|
class |
UniqOptionSet_cdgu
|
class |
UniqOptionSet_cg
|
class |
UniqOptionSet_dg
|
class |
UniqOptionSet_gu
|
Modifier and Type | Field and Description |
---|---|
static UniqOptions |
UniqOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<UniqOptions> |
UniqOptions.CONVERTER
Value converter for
UniqOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
UniqOptions |
UniqArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
UniqCommand |
UniqFactory.uniq(UniqOptions options) |
UniqCommand |
UniqFactory.uniq(UniqOptions options,
File file) |
UniqCommand |
UniqFactory.uniq(UniqOptions options,
String path) |
Constructor and Description |
---|
UniqArguments(UniqOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.