xref: /original-bsd/usr.bin/tip/cmdtab.c (revision 1f3a482a)
1 /*	cmdtab.c	4.3	81/05/31	*/
2 #include "tip.h"
3 
4 extern int shell(), getfl(), sendfile(), chdirectory(),
5 	finish(), help(), pipefile(), consh(), variable(),
6 	cu_take(), cu_put(), dollar(), genbrk();
7 
8 esctable_t etable[] =
9 {
10 	{ '!',	NORM,	"shell",			 shell },
11 	{ '<',	NORM,	"receive file from remote host", getfl },
12 	{ '>',	NORM,	"send file to remote host",	 sendfile },
13 	{ 't',	NORM,	"take file from remote UNIX",	 cu_take },
14 	{ 'p',	NORM,	"put file to remote UNIX",	 cu_put },
15 	{ '|',	NORM,	"pipe remote file",		 pipefile },
16 #ifdef CONNECT
17 	{ '%',  NORM,	"connect program to remote host",consh },
18 #endif
19 	{ 'c',	NORM,	"change directory",		 chdirectory },
20 	{ '.',	NORM,	"exit from tip",		 finish },
21 	{CTRL(d),NORM,	"exit from tip",		 finish },
22 	{ 's',	NORM,	"set variable",			 variable },
23 	{ '?',	NORM,	"get this summary",		 help },
24 	{ '#',	NORM,	"send break",			 genbrk },
25 	{ 0, 0, 0 }
26 };
27