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.grep |
Contains private classes used by the
grep command. |
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
Pattern pattern,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
Pattern pattern,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
Pattern pattern,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
String regexp,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
String regexp,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(GrepOptions options,
String regexp,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
Pattern pattern)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
Pattern pattern,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
Pattern pattern,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
Pattern pattern,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
Pattern pattern,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
String regexp)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
String regexp)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
String regexp) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
String regexp,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
String regexp,
File... files)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
String regexp,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
String regexp,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
String regexp,
Input... inputs)
Filters the input lines from the specified inputs and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
String regexp,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(GrepOptions options,
String regexp,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
R |
Grep.Interface.grep(GrepOptions options,
String regexp,
String... paths)
Filters the input lines from the specified input files and writes
the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
String regexp,
String... paths) |
Modifier and Type | Class and Description |
---|---|
class |
GrepOption
Options for the
grep command. |
static class |
GrepOptions.Default
Default implementation for a modifiable option set.
|
class |
GrepOptionSet_Fcilnvx
|
Modifier and Type | Field and Description |
---|---|
static GrepOptions |
GrepOptions.EMPTY
Constant for an empty option set.
|
Modifier and Type | Field and Description |
---|---|
static ValueConverter<GrepOptions> |
GrepOptions.CONVERTER
Value converter for
GrepOptions based on an OptionSetConverters.OptionSetConverter . |
Modifier and Type | Method and Description |
---|---|
GrepOptions |
GrepArguments.getOptions()
Returns the options set containing the selected command options.
|
Modifier and Type | Method and Description |
---|---|
GrepCommand |
GrepFactory.grep(GrepOptions options,
Pattern pattern) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
Pattern pattern,
File... files) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
Pattern pattern,
Input... inputs) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
Pattern pattern,
String... paths) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
String regexp) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
String regexp,
File... files) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
String regexp,
Input... inputs) |
GrepCommand |
GrepFactory.grep(GrepOptions options,
String regexp,
String... paths) |
Constructor and Description |
---|
GrepArguments(GrepOptions options)
Constructor with option set containing the selected command options.
|
Copyright © 2024. All rights reserved.