Class Shell

java.lang.Object
   |
   +----Shell

public class Shell
extends Object
A simple command-line shell for the MiniKernel. This version of the Shell allows multiple commands separated by &, so that you can run multiple programs at once.

This program displays a prompt and waits for the user to enter commands. Commands must be the names of Java classes that implement public static void main( String args[] ). The shell will then ask the Kernel to run that program.

exit or EOF will end the program.

Author:
Douglas Thain
See Also:
Kernel

Constructor Index

 o Shell()

Method Index

 o main(String[])

Constructors

 o Shell
 public Shell()

Methods

 o main
 public static void main(String a[])