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.
|
Modifier and Type | Method and Description |
---|---|
static Unix4jCommandBuilder |
Unix4j.builder()
Returns a builder to create a command or command chain.
|
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.
|
static Unix4jCommandBuilder |
Unix4j.cat(File... files)
Reads the lines from the specified files and writes them to the
standard output.
|
static Unix4jCommandBuilder |
Unix4j.cat(Input... inputs)
Reads the lines from the specified inputs and writes them to the
standard output.
|
static Unix4jCommandBuilder |
Unix4j.cat(String... args)
Reads the lines from files specified as arguments and writes them to
the standard output.
|
static Unix4jCommandBuilder |
Unix4j.cd()
Changes the current directory to the user home directory as defined
by the execution context (usually the directory specified by the
"user.home" system property). |
static Unix4jCommandBuilder |
Unix4j.cd(File file)
The current working directory is changed to the given file.
|
static Unix4jCommandBuilder |
Unix4j.cd(String path)
The current working directory is changed to the given file.
|
static Unix4jCommandBuilder |
Unix4j.echo(EchoOptions options,
String... strings)
Writes any of the specified strings, separated by single blank
(
' ' ) characters to the standard output suppressing the
trailing line ending if the -n option is specified. |
static Unix4jCommandBuilder |
Unix4j.echo(EchoOptions options,
String string)
Writes the specified string followed by a newline character to
the standard output suppressing the trailing line ending if the
-n option is specified. |
static Unix4jCommandBuilder |
Unix4j.echo(String... args)
Writes any of the specified strings, separated by single blank
(
' ' ) characters to the standard output suppressing the
trailing line ending if the "-n" option is specified. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
Date time)
Finds all files that have been created, modified or accessed before
or after the specified
time (depending on the given
-time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
Date time,
String name)
Finds all files matching the given
name that have been
created, modified or accessed before or after the specified
time (depending on the given -time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
long size)
Finds all files matching the specified file
size in or below
the user's current working directory and writes the file names to
the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
long size,
Date time,
String name)
Finds all files matching the given
name and size and
have been created, modified or accessed before or after the specified
time (depending on the given -time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the user's current working directory and
writes the file names to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String name)
Finds all files matching the specified
name in or below the
user's current working directory and writes the file names to the
standard output. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
Date time)
Finds all files that have been created, modified or accessed before
or after the specified
time (depending on the given
-time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
Date time,
String name)
Finds all files matching the given
name that have been
created, modified or accessed before or after the specified
time (depending on the given -time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
long size)
Finds all files matching the specified file
size in or below
the directory specified by path and writes the file names
to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
long size,
Date time,
String name)
Finds all files matching the given
name and size and
have been created, modified or accessed before or after the specified
time (depending on the given -time... options). |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the directory specified by path
and writes the file names to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(FindOptions options,
String path,
String name)
Finds all files matching the specified
name in or below the
directory specified by path and writes the file names to
the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(long size)
Finds all files matching the specified file
size in or below
the user's current working directory and writes the file names to
the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(long size,
String name)
Finds all files matching the specified file
name and
size in or below the user's current working directory and
writes the file names to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(String... args)
Finds all files matching the search criteria specified by the given
arguments and writes the file names to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.find(String path)
Finds all files in or below the directory specified by
path
and writes the file names to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(String path,
long size)
Finds all files matching the specified file
size in or below
the directory specified by path and writes the file names
to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(String path,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the directory specified by path
and writes the file names to the standard output. |
static Unix4jCommandBuilder |
Unix4j.find(String path,
String name)
Finds all files matching the specified
name in or below the
directory specified by path and writes the file names to
the standard output. |
static Unix4jCommandBuilder |
Unix4j.from(Input input)
Reads from the given input object and redirects the contents into
the next command.
|
static Unix4jCommandBuilder |
Unix4j.from(InputStream in)
Reads from the given input stream and redirects the contents into
the next command.
|
static Unix4jCommandBuilder |
Unix4j.from(Iterable<? extends String> lines)
Uses the strings in the specified
input iterable as input
lines for the next command. |
static Unix4jCommandBuilder |
Unix4j.from(Iterator<? extends String> iterator)
Uses the strings returned by the specified iterator as input
lines for the next command.
|
static Unix4jCommandBuilder |
Unix4j.from(Reader reader)
Uses the given reader and redirects the read input into the next
command.
|
static Unix4jCommandBuilder |
Unix4j.from(Stream<? extends String> stream)
Uses the strings returned by the specified stream as input
lines for the next command.
|
static Unix4jCommandBuilder |
Unix4j.from(URL url)
Reads from the given URL and redirects the contents into the next
command.
|
static Unix4jCommandBuilder |
Unix4j.fromFile(File file)
Redirects the contents of the given file into the next command.
|
static Unix4jCommandBuilder |
Unix4j.fromFile(String path)
Redirects the contents of the given file into the next command.
|
static Unix4jCommandBuilder |
Unix4j.fromResource(Class<?> base,
String resource)
Reads from the given resource relative to the classpath and
redirects the contents into the next command.
|
static Unix4jCommandBuilder |
Unix4j.fromResource(String resource)
Reads from the given resource relative to the classpath and
redirects the contents into the next command.
|
static Unix4jCommandBuilder |
Unix4j.fromString(String string)
Uses the given string as input for the next command.
|
static Unix4jCommandBuilder |
Unix4j.fromStrings(String... strings)
Uses the given strings as input for the next command.
|
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.
|
static Unix4jCommandBuilder |
Unix4j.grep(Pattern pattern,
File... files)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(Pattern pattern,
Input... inputs)
Filters the lines from the specified inputs and writes the
matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(Pattern pattern,
String... paths)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(String regexp,
File... files)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.grep(String regexp,
Input... inputs)
Filters the lines from the specified inputs and writes the
matching lines to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.head(File... files)
Reads the first 10 lines from each of the specified files and writes
them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.head(HeadOptions options,
long count,
File... files)
Reads the first
count lines or characters from each of the
specified files and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.head(HeadOptions options,
long count,
Input... inputs)
Reads the first
count lines or characters from each of the
specified inputs and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.head(HeadOptions options,
long count,
String... paths)
Reads the first
count lines or characters from each of the
specified files and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.head(Input... inputs)
Reads the first 10 lines from each of the specified inputs and writes
them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.head(long count,
File... files)
Reads the first
count lines from each of the specified files
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.head(long count,
Input... inputs)
Reads the first
count lines from each of the specified inputs
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.head(long count,
String... paths)
Reads the first
count lines from each of the specified files
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.ls()
Lists all files and directories in the user's current working
directory and writes them to the output.
|
static Unix4jCommandBuilder |
Unix4j.ls(File... files)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
static Unix4jCommandBuilder |
Unix4j.ls(LsOptions options)
Lists all files and directories in the user's current working
directory and writes them to the output using the given options
specifying the details of the output format.
|
static Unix4jCommandBuilder |
Unix4j.ls(LsOptions options,
File... files)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
static Unix4jCommandBuilder |
Unix4j.ls(LsOptions options,
String... paths)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
static Unix4jCommandBuilder |
Unix4j.ls(String... args)
Prints the name of the specified files and lists all files contained
in directories for every directory in those files.
|
static Unix4jCommandBuilder |
Unix4j.sed(SedOptions options,
String regexp)
Executes the sed command specified by the given options or executes
the print command p if no command option has been declared.
|
static Unix4jCommandBuilder |
Unix4j.sed(SedOptions options,
String string1,
String string2)
Executes the sed command specified by the given options or executes
the substitute command s if no command option has been declared.
|
static Unix4jCommandBuilder |
Unix4j.sed(SedOptions options,
String string1,
String string2,
int... occurrence)
Executes the sed command specified by the given options or executes
the substitute command s if no command option has been declared.
|
static Unix4jCommandBuilder |
Unix4j.sed(String... args)
Executes the sed script specified by the given arguments and writes
the result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sed(String script)
Executes the given sed script, such as "s/original/replacement/g".
|
static Unix4jCommandBuilder |
Unix4j.sed(String regexp,
String replacement)
Substitutes the replacement string for instances of the regexp in
the matched line.
|
static Unix4jCommandBuilder |
Unix4j.sed(String regexp,
String replacement,
int... occurrence)
Substitutes the replacement string for instances of the regexp in
the matched line.
|
static Unix4jCommandBuilder |
Unix4j.sort(Comparator<? super Line> comparator,
File... files)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sort(Comparator<? super Line> comparator,
Input... inputs)
Sort the lines of all the specified inputs together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sort(Comparator<? super Line> comparator,
String... paths)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sort(File... files)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sort(Input... inputs)
Sort the lines of all the specified inputs together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
Comparator<? super Line> comparator,
File... files)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
Comparator<? super Line> comparator,
Input... inputs)
Sorts, merges, or sequence checks the lines the lines of all the
specified inputs together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
Comparator<? super Line> comparator,
String... paths)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
File... files)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
Input... inputs)
Sorts, merges, or sequence checks the lines the lines of all the
specified inputs together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(SortOptions options,
String... paths)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.sort(String... args)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.tail(File... files)
Reads the last 10 lines from each of the specified files and writes
them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.tail(Input... inputs)
Reads the last 10 lines from each of the specified inputs and writes
them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.tail(long count,
File... files)
Reads the last
count lines from each of the specified files
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.tail(long count,
Input... inputs)
Reads the last
count lines from each of the specified inputs
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.tail(long count,
String... paths)
Reads the last
count lines from each of the specified files
and writes them to the standard output. |
static Unix4jCommandBuilder |
Unix4j.tail(String... args)
Reads the last n lines from each of the files specified and writes
them to the standard output.
|
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. |
static Unix4jCommandBuilder |
Unix4j.uniq(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(String path)
Reads the file specified by its
path and compares adjacent
lines, writing one copy of each input line to the standard output. |
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. |
static Unix4jCommandBuilder |
Unix4j.use(ExecutionContextFactory contextFactory)
Returns a builder that uses the specified factory to create contexts for
command execution.
|
static Unix4jCommandBuilder |
Unix4j.wc(File... files)
Executes a count of lines, words and chars contained in each input
file and writes them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.wc(Input... inputs)
Executes a count of lines, words and chars contained in each input
and writes them to the standard output.
|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
File... files)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
Input... inputs)
Executes a one or more counts, depending on the given options, in
each of the given inputs and writes them to the standard
output.
|
static Unix4jCommandBuilder |
Unix4j.wc(WcOptions options,
String[] paths)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultUnix4jCommandBuilder
Default implementation for
Unix4jCommandBuilder . |
Modifier and Type | Method and Description |
---|---|
Unix4jCommandBuilder |
Unix4jCommandBuilder.apply(LineOperation operation) |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.apply(LineOperation operation) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat()
Reads the lines from the standard input and writes them to the
standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat() |
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) |
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) |
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) |
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) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(File... files)
Reads the lines from the specified files and writes them to the
standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(Input... inputs)
Reads the lines from the specified inputs and writes them to the
standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cat(String... args)
Reads the lines from files specified as arguments and writes them to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cat(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cd()
Changes the current directory to the user home directory as defined
by the execution context (usually the directory specified by the
"user.home" system property). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cd() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cd(File file)
The current working directory is changed to the given file.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cd(File file) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cd(String path)
The current working directory is changed to the given file.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cd(String path) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
int... indexes)
Cuts the fields or characters using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
int... indexes) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
Range range)
Cuts the fields or characters using the given range
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
Range range) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes)
Cuts the fields using the given indexes and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
int... indexes) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range)
Cuts the fields using the given range and using the given delimiter
from the input line and writes them to the output using the given outputDelimiter.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
char outputDelimiter,
Range range) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
int... indexes)
Cuts the fields using the given indexes
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
int... indexes) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(CutOptions options,
String delimiter,
Range range)
Cuts the fields using the given range
from the input line and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(CutOptions options,
String delimiter,
Range range) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.cut(String... args)
Cuts the fields or characters from the input line and writes them to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.cut(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.echo(EchoOptions options,
String... strings)
Writes any of the specified strings, separated by single blank
(
' ' ) characters to the standard output suppressing the
trailing line ending if the -n option is specified. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.echo(EchoOptions options,
String... strings) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.echo(EchoOptions options,
String string)
Writes the specified string followed by a newline character to
the standard output suppressing the trailing line ending if the
-n option is specified. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.echo(EchoOptions options,
String string) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.echo(String... args)
Writes any of the specified strings, separated by single blank
(
' ' ) characters to the standard output suppressing the
trailing line ending if the "-n" option is specified. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.echo(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
Date time)
Finds all files that have been created, modified or accessed before
or after the specified
time (depending on the given
-time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
Date time) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
Date time,
String name)
Finds all files matching the given
name that have been
created, modified or accessed before or after the specified
time (depending on the given -time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
Date time,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
long size)
Finds all files matching the specified file
size in or below
the user's current working directory and writes the file names to
the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
long size) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
long size,
Date time,
String name)
Finds all files matching the given
name and size and
have been created, modified or accessed before or after the specified
time (depending on the given -time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
long size,
Date time,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the user's current working directory and
writes the file names to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
long size,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String name)
Finds all files matching the specified
name in or below the
user's current working directory and writes the file names to the
standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
Date time)
Finds all files that have been created, modified or accessed before
or after the specified
time (depending on the given
-time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
Date time) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
Date time,
String name)
Finds all files matching the given
name that have been
created, modified or accessed before or after the specified
time (depending on the given -time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
Date time,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
long size)
Finds all files matching the specified file
size in or below
the directory specified by path and writes the file names
to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
long size) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
long size,
Date time,
String name)
Finds all files matching the given
name and size and
have been created, modified or accessed before or after the specified
time (depending on the given -time... options). |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
long size,
Date time,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the directory specified by path
and writes the file names to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
long size,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(FindOptions options,
String path,
String name)
Finds all files matching the specified
name in or below the
directory specified by path and writes the file names to
the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(FindOptions options,
String path,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(long size)
Finds all files matching the specified file
size in or below
the user's current working directory and writes the file names to
the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(long size) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(long size,
String name)
Finds all files matching the specified file
name and
size in or below the user's current working directory and
writes the file names to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(long size,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(String... args)
Finds all files matching the search criteria specified by the given
arguments and writes the file names to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(String path)
Finds all files in or below the directory specified by
path
and writes the file names to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(String path) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(String path,
long size)
Finds all files matching the specified file
size in or below
the directory specified by path and writes the file names
to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(String path,
long size) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(String path,
long size,
String name)
Finds all files matching the specified file
name and
size in or below the directory specified by path
and writes the file names to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(String path,
long size,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.find(String path,
String name)
Finds all files matching the specified
name in or below the
directory specified by path and writes the file names to
the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.find(String path,
String name) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(Input input)
Reads from the given input object and redirects the contents into
the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(Input input) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(InputStream in)
Reads from the given input stream and redirects the contents into
the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(InputStream in) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(Iterable<? extends String> lines)
Uses the strings in the specified
input iterable as input
lines for the next command. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(Iterable<? extends String> lines) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(Iterator<? extends String> iterator)
Uses the strings returned by the specified iterator as input
lines for the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(Iterator<? extends String> iterator) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(Reader reader)
Uses the given reader and redirects the read input into the next
command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(Reader reader) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(Stream<? extends String> stream)
Uses the strings returned by the specified stream as input
lines for the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(Stream<? extends String> stream) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.from(URL url)
Reads from the given URL and redirects the contents into the next
command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.from(URL url) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromFile(File file)
Redirects the contents of the given file into the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromFile(File file) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromFile(String path)
Redirects the contents of the given file into the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromFile(String path) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromResource(Class<?> base,
String resource)
Reads from the given resource relative to the classpath and
redirects the contents into the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromResource(Class<?> base,
String resource) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromResource(String resource)
Reads from the given resource relative to the classpath and
redirects the contents into the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromResource(String resource) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromString(String string)
Uses the given string as input for the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromString(String string) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.fromStrings(String... strings)
Uses the given strings as input for the next command.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.fromStrings(String... strings) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(GrepOptions options,
String regexp,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(Pattern pattern)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(Pattern pattern) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(Pattern pattern,
File... files)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(Pattern pattern,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(Pattern pattern,
Input... inputs)
Filters the lines from the specified inputs and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(Pattern pattern,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(Pattern pattern,
String... paths)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(Pattern pattern,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(String... args)
Filters the input lines from the standard input or the provided
input files and writes the matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(String regexp)
Filters the input lines from the standard input and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(String regexp) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(String regexp,
File... files)
Filters the lines from the specified input files and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(String regexp,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.grep(String regexp,
Input... inputs)
Filters the lines from the specified inputs and writes the
matching lines to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.grep(String regexp,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head()
Reads the first 10 lines from the standard input and writes them to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(File... files)
Reads the first 10 lines from each of the specified files and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(HeadOptions options,
long count)
Reads the first
count lines or characters from the standard
input and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(HeadOptions options,
long count) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(HeadOptions options,
long count,
File... files)
Reads the first
count lines or characters from each of the
specified files and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(HeadOptions options,
long count,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(HeadOptions options,
long count,
Input... inputs)
Reads the first
count lines or characters from each of the
specified inputs and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(HeadOptions options,
long count,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(HeadOptions options,
long count,
String... paths)
Reads the first
count lines or characters from each of the
specified files and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(HeadOptions options,
long count,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(Input... inputs)
Reads the first 10 lines from each of the specified inputs and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(long count)
Reads the first
count lines from the standard input and
writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(long count) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(long count,
File... files)
Reads the first
count lines from each of the specified files
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(long count,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(long count,
Input... inputs)
Reads the first
count lines from each of the specified inputs
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(long count,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(long count,
String... paths)
Reads the first
count lines from each of the specified files
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(long count,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.head(String... args)
Reads the first n lines from each of the files specified and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.head(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.join(Command<?> command) |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.join(Command<?> command) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls()
Lists all files and directories in the user's current working
directory and writes them to the output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls(File... files)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls(LsOptions options)
Lists all files and directories in the user's current working
directory and writes them to the output using the given options
specifying the details of the output format.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls(LsOptions options) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls(LsOptions options,
File... files)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls(LsOptions options,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls(LsOptions options,
String... paths)
Prints the name of the given files and lists all files contained in
directories for every directory in
files . |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls(LsOptions options,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.ls(String... args)
Prints the name of the specified files and lists all files contained
in directories for every directory in those files.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.ls(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.reset() |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.reset() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(SedOptions options,
String regexp)
Executes the sed command specified by the given options or executes
the print command p if no command option has been declared.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(SedOptions options,
String regexp) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(SedOptions options,
String string1,
String string2)
Executes the sed command specified by the given options or executes
the substitute command s if no command option has been declared.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(SedOptions options,
String string1,
String string2) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(SedOptions options,
String string1,
String string2,
int... occurrence)
Executes the sed command specified by the given options or executes
the substitute command s if no command option has been declared.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(SedOptions options,
String string1,
String string2,
int... occurrence) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(String... args)
Executes the sed script specified by the given arguments and writes
the result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(String script)
Executes the given sed script, such as "s/original/replacement/g".
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(String script) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(String regexp,
String replacement)
Substitutes the replacement string for instances of the regexp in
the matched line.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(String regexp,
String replacement) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sed(String regexp,
String replacement,
int... occurrence)
Substitutes the replacement string for instances of the regexp in
the matched line.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sed(String regexp,
String replacement,
int... occurrence) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort()
Sort the lines read from the standard input and writes the result to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(Comparator<? super Line> comparator)
Sort the lines read from the standard input and writes the result to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(Comparator<? super Line> comparator) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(Comparator<? super Line> comparator,
File... files)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(Comparator<? super Line> comparator,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(Comparator<? super Line> comparator,
Input... inputs)
Sort the lines of all the specified inputs together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(Comparator<? super Line> comparator,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(Comparator<? super Line> comparator,
String... paths)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(Comparator<? super Line> comparator,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(File... files)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(Input... inputs)
Sort the lines of all the specified inputs together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options)
Sorts, merges, or sequence checks the lines read from the standard
input and writes the result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator)
Sorts, merges, or sequence checks the lines read from the standard
input and writes the result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
File... files)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
Input... inputs)
Sorts, merges, or sequence checks the lines the lines of all the
specified inputs together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
String... paths)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
Comparator<? super Line> comparator,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
File... files)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
Input... inputs)
Sorts, merges, or sequence checks the lines the lines of all the
specified inputs together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(SortOptions options,
String... paths)
Sorts, merges, or sequence checks the lines the lines of all the
specified files together and writes the result to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(SortOptions options,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.sort(String... args)
Sort the lines of all the specified files together and writes the
result to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.sort(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail()
Reads the last 10 lines from the standard input and writes them to
the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(File... files)
Reads the last 10 lines from each of the specified files and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(Input... inputs)
Reads the last 10 lines from each of the specified inputs and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(long count)
Reads the last
count lines from the standard input and
writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(long count) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(long count,
File... files)
Reads the last
count lines from each of the specified files
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(long count,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(long count,
Input... inputs)
Reads the last
count lines from each of the specified inputs
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(long count,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(long count,
String... paths)
Reads the last
count lines from each of the specified files
and writes them to the standard output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(long count,
String... paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.tail(String... args)
Reads the last n lines from each of the files specified and writes
them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.tail(String... args) |
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) |
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) |
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) |
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) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq()
Reads from the standard input and compares adjacent lines, writing
one copy of each input line to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.uniq() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(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(File file) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(String... args)
Reads the file specified by the
"--path" operand (the
default operand) and writes only unique lines to the standard
output. |
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.uniq(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.uniq(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(String path) |
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) |
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) |
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) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc()
Executes a count of lines, words and chars contained in the standard
input and writes them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(File... files)
Executes a count of lines, words and chars contained in each input
file and writes them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(Input... inputs)
Executes a count of lines, words and chars contained in each input
and writes them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(String... args)
One or several counts are executed and written to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options)
Executes a one or more counts, depending on the given options, in
the standard input and writes them to the standard output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
File... files)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
File... files) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
Input... inputs)
Executes a one or more counts, depending on the given options, in
each of the given inputs and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
Input... inputs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.wc(WcOptions options,
String[] paths)
Executes a one or more counts, depending on the given options, in
each of the given input files and writes them to the standard
output.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.wc(WcOptions options,
String[] paths) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs()
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs() |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(long maxLines)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(long maxLines) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(long maxLines,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(long maxLines,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String... args)
Reads items from the standard input, delimited by blanks and
newlines or a specified delimiter, and provides variables for the
items read from the standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String... args) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String delimiter)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String delimiter) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String delimiter,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String delimiter,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String delimiter,
long maxLines)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String delimiter,
long maxLines) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String delimiter,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String delimiter,
long maxLines,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(String delimiter,
String eof,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(String delimiter,
String eof,
long maxLines,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
long maxLines)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
long maxLines) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
long maxLines,
int maxArgs)
Reads items from the standard input, delimited by blanks (which can
be protected with double or single quotes or a backslash) or
newlines, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
long maxLines,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
String delimiter)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
long maxLines,
int maxArgs) |
Unix4jCommandBuilder |
Unix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
String eof,
long maxLines,
int maxArgs)
Reads items from the standard input using the specified delimiter to
separate items, and provides variables for the items read from the
standard input.
|
Unix4jCommandBuilder |
DefaultUnix4jCommandBuilder.xargs(XargsOptions options,
String delimiter,
String eof,
long maxLines,
int maxArgs) |
Copyright © 2024. All rights reserved.