@Immutable @Loggable(value=1) public final class Terminal extends Object
Modifier and Type | Method and Description |
---|---|
static String |
escape(String arg)
Escape argument.
|
String |
exec(String command)
Run this command and return its output (fail on non-zero exit code).
|
String |
exec(String command,
String stdin)
Run this command and return its output (fail on non-zero exit code).
|
static String |
quotate(String arg)
Quotate argument.
|
public static String escape(@NotNull(message="argument can\'t be NULL") String arg)
arg
- Argumentpublic static String quotate(@NotNull(message="argument can\'t be NULL") String arg)
arg
- Argument@Loggable(value=1, limit=2147483647, ignore=java.io.IOException.class) public String exec(@NotNull(message="command can\'t be NULL") String command) throws IOException
command
- The commandIOException
- If some IO problem inside@Loggable(value=1, limit=2147483647, ignore=java.io.IOException.class) public String exec(@NotNull(message="command can\'t be NULL") String command, @NotNull(message="stdin can\'t be NULL") String stdin) throws IOException
command
- The commandstdin
- Input streamIOException
- If some IO problem insideCopyright © 2009–2014 Rultor Inc.. All rights reserved.