use of org.apache.felix.service.command.Process in project felix by apache.
the class Builtin method history.
public void history(CommandSession session, String[] argv) throws IOException {
Process process = Process.Utils.current();
Commands.history(Shell.getReader(session), process.out(), process.err(), argv);
}
Aggregations