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

📄 cmdtab.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifndef lintstatic char sccsid[] = "@(#)cmdtab.c	4.6 (Berkeley) 6/25/83";#endif#include "tip.h"extern	int shell(), getfl(), sendfile(), chdirectory();extern	int finish(), help(), pipefile(), consh(), variable();extern	int cu_take(), cu_put(), dollar(), genbrk(), suspend();esctable_t etable[] = {	{ '!',	NORM,	"shell",			 shell },	{ '<',	NORM,	"receive file from remote host", getfl },	{ '>',	NORM,	"send file to remote host",	 sendfile },	{ 't',	NORM,	"take file from remote UNIX",	 cu_take },	{ 'p',	NORM,	"put file to remote UNIX",	 cu_put },	{ '|',	NORM,	"pipe remote file",		 pipefile },#ifdef CONNECT	{ 'C',  NORM,	"connect program to remote host",consh },#endif	{ 'c',	NORM,	"change directory",		 chdirectory },	{ '.',	NORM,	"exit from tip",		 finish },	{CTRL('d'),NORM, "exit from tip",		 finish },	{CTRL('z'),NORM, "suspend tip",			 suspend },	{ 's',	NORM,	"set variable",			 variable },	{ '?',	NORM,	"get this summary",		 help },	{ '#',	NORM,	"send break",			 genbrk },	{ 0, 0, 0 }};

⌨️ 快捷键说明

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