📄 cli_shell.c
字号:
/*****************************************************************************
*
* Module : cli_shell.c
* Description : opening command line interface
* OS : SLOS
* Platform : generic
* History :
*
* 2nd November 2001
* - created
*
*****************************************************************************/
/*****************************************************************************
* IMPORT
*****************************************************************************/
#include "all.h"
#include "cli_readline.h"
/*****************************************************************************
* ROUTINES
*****************************************************************************/
/* -- shell -------------------------------------------------------------------
*
* Description : this is an entry into shell
*
* Parameters : void
* Return : none...
* Notes : none...
*
*/
void shell(void)
{
CallBack cb;
int len;
do
{
len = readLine("e7t: ", command_line, 255);
cb = CLI(command_line);
} while (!cb);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -