⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cli_shell.c

📁 一个简单的小型操作系统
💻 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 + -