package commands; import kernel.*; /** * Terminates the shell in which it was run. * * @author Tomáš Podskalský */ public class exit extends AbstractProcess { public void realization() throws AppException { getParentShell().kill(); } /** * Provides help for users. * */ public String getHelp() { return "\n\nDescription:\nTerminates the shell in which it was run..\n\n"; } }