xref: /original-bsd/usr.bin/tip/cmdtab.c (revision fbed46ce)
1 /*	cmdtab.c	4.4	81/11/29	*/
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(), suspend();
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 #ifdef SIGTSTP
23 	{CTRL(z),NORM,	"suspend tip",			 suspend },
24 #endif
25 	{ 's',	NORM,	"set variable",			 variable },
26 	{ '?',	NORM,	"get this summary",		 help },
27 	{ '#',	NORM,	"send break",			 genbrk },
28 	{ 0, 0, 0 }
29 };
30