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

📄 testit.c

📁 支持X/YModem和cis_b+协议的串口通讯程序
💻 C
字号:
/*  $Revision: 1.2 $****  A "micro-shell" to test editline library.**  If given any arguments, commands aren't executed.*/#include <stdio.h>#include <stdlib.h>#ifdef MEMDEBUG#include <memdebug.h>#endif#ifndef TRUE#define TRUE 1#define FALSE 0#endif extern void rl_initialize( void );extern char *readline( char *, int );extern void *add_history( char * );char *luxptr = NULL ;int silent = 0 ;/* ARGSUSED1 */intmain(ac, av)    int		ac;    char	*av[];{    char	*p;    int		doit;    doit = ac == 1;	rl_initialize();    while ((p = readline("testit> ", TRUE )) != NULL) {	if( strncmp( p, "quit", 4) == 0 )	break; 		(void)printf("\t\t\t|%s|\n", p);	if (doit)	    if (strncmp(p, "cd ", 3) == 0) {		if (chdir(&p[3]) < 0)		    perror(&p[3]);	    }	    else if (system(p) != 0)		perror(p);	add_history(p);	free(p);	p = NULL ;    }    exit(0);    /* NOTREACHED */}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -