Package | Description |
---|---|
org.unix4j.builder |
Defines interfaces and implementations used to create a command or a chain of
joined commands.
|
org.unix4j.io |
Contains interfaces and classes used to handle input and output of commands.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultCommandBuilder.toOutput(Output output) |
void |
To.toOutput(Output output)
Executes the composite command and writes the result to the given output.
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedOutput
Output device storing all written lines in memory in a
List . |
class |
FileOutput
Output device writing to a
File . |
class |
NullOutput
Output device writing to
/dev/null , which means that all lines
written to this device are ignored. |
class |
StdOutput
Output device writing to the
standard output stream. |
class |
StreamOutput
Output device writing to an
OutputStream . |
class |
StringOutput
Output device writing the output lines to a string.
|
class |
WriterOutput
Output device based on a
Writer . |
Modifier and Type | Method and Description |
---|---|
void |
BufferedOutput.writeTo(Output output)
Writes the buffered output lines to the specified
output device. |
Copyright © 2024. All rights reserved.