Package org.jline.shell


package org.jline.shell
Clean shell API for building interactive command-line applications with JLine.

This package provides the core abstractions for commands, command groups, command dispatching, pipelines, and job management.

Architecture

 jline-terminal
   ^
 jline-reader
   ^
 jline-shell  (this module)
   ^
 jline-console
 

Core Types

Quick Start

 Shell shell = Shell.builder()
     .prompt("myapp> ")
     .groups(myGroup)
     .build();
 shell.run();
 
Since:
4.0