Package | Description |
---|---|
org.unix4j.command |
Declares the basic command interface and contains related classes used by
most command implementations.
|
org.unix4j.operation |
Contains the
LineOperation
interface and the AdHocCommand
implementation facilitating the creation of ad-hoc commands. |
org.unix4j.processor |
Defines
LineProcessor and
InputProcessor , two interfaces
used for line-by-line input processing, and provides some basic
implementations for both interfaces. |
org.unix4j.unix.cat |
Contains private classes used by the
cat command. |
org.unix4j.unix.cd |
Contains private classes used by the
cd command. |
org.unix4j.unix.cut |
Contains private classes used by the
cut command. |
org.unix4j.unix.echo |
Contains private classes used by the
echo command. |
org.unix4j.unix.find |
Contains private classes used by the
find command. |
org.unix4j.unix.from |
Contains private classes used by the
from command. |
org.unix4j.unix.grep |
Contains private classes used by the
grep command. |
org.unix4j.unix.head |
Contains private classes used by the
head command. |
org.unix4j.unix.ls |
Contains private classes used by the
ls command. |
org.unix4j.unix.sed |
Contains private classes used by the
sed command. |
org.unix4j.unix.sort |
Contains private classes used by the
sort command. |
org.unix4j.unix.tail |
Contains private classes used by the
tail command. |
org.unix4j.unix.uniq |
Contains private classes used by the
uniq command. |
org.unix4j.unix.wc |
Contains private classes used by the
wc command. |
org.unix4j.unix.xargs |
Contains private classes used by the
xargs command. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCommand<A extends Arguments<A>>
Abstract base class suitable for most command implementations.
|
interface |
Arguments<A extends Arguments<A>>
Interface implemented by command arguments.
|
interface |
Command<A extends Arguments<A>>
|
class |
JoinedCommand<A extends Arguments<A>>
A composite command joining two commands.
|
Modifier and Type | Class and Description |
---|---|
static class |
NoOp.Args
Arguments for NoOp.
|
Modifier and Type | Method and Description |
---|---|
static <A extends Arguments<A>> |
JoinedCommand.join(Command<A> first,
Command<?> second) |
Modifier and Type | Class and Description |
---|---|
static class |
AdHocCommand.Args
Arguments for
AdHocCommand . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractLineProcessor<A extends Arguments<A>>
Abstract base implementation for
LineProcessor returned by the
execute method of commands constructed with a reference to the command plus
context and output passed to
Command.execute(ExecutionContext, LineProcessor) . |
Modifier and Type | Class and Description |
---|---|
class |
CatArguments
Arguments and options for the
cat command. |
Modifier and Type | Class and Description |
---|---|
class |
CdArguments
Arguments and options for the
cd command. |
Modifier and Type | Class and Description |
---|---|
class |
CutArguments
Arguments and options for the
cut command. |
Modifier and Type | Class and Description |
---|---|
class |
EchoArguments
Arguments and options for the
echo command. |
Modifier and Type | Class and Description |
---|---|
class |
FindArguments
Arguments and options for the
find command. |
Modifier and Type | Class and Description |
---|---|
class |
FromArguments
Arguments and options for the
from command. |
Modifier and Type | Class and Description |
---|---|
class |
GrepArguments
Arguments and options for the
grep command. |
Modifier and Type | Class and Description |
---|---|
class |
HeadArguments
Arguments and options for the
head command. |
Modifier and Type | Class and Description |
---|---|
class |
LsArguments
Arguments and options for the
ls command. |
Modifier and Type | Class and Description |
---|---|
class |
SedArguments
Arguments and options for the
sed command. |
Modifier and Type | Class and Description |
---|---|
class |
SortArguments
Arguments and options for the
sort command. |
Modifier and Type | Class and Description |
---|---|
class |
TailArguments
Arguments and options for the
tail command. |
Modifier and Type | Class and Description |
---|---|
class |
UniqArguments
Arguments and options for the
uniq command. |
Modifier and Type | Class and Description |
---|---|
class |
WcArguments
Arguments and options for the
wc command. |
Modifier and Type | Class and Description |
---|---|
class |
XargsArguments
Arguments and options for the
xargs command. |
Copyright © 2024. All rights reserved.