shell.java
来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 29 行
JAVA
29 行
/*
* $Id: Shell.java,v 1.1 2003/11/25 11:52:59 epr Exp $
*/
package org.jnode.shell;
import org.jnode.shell.alias.AliasManager;
/**
* @author epr
*/
public interface Shell {
/**
* Gets the alias manager of this shell
*/
public AliasManager getAliasManager();
/**
* Gets the CommandHistory object associated with this shell.
*/
public CommandHistory getCommandHistory();
/**
* Prints a list of choices for command line completion.
*/
public void list(String[] items);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?