xref: /original-bsd/usr.bin/tip/cmdtab.c (revision 6c57d260)
1 /*	cmdtab.c	4.1	81/05/09	*/
2 #include "tip.h"
3 
4 extern int shell(), getfl(), sendfile(), chdirectory(),
5 	finish(), help(), pipefile(), consh(), variable(),
6 	cu_take(), cu_put(), dollar();
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 	{CTRL(d),NORM,	"exit from tip",		 finish },
21 	{ 's',	NORM,	"set variable",			 variable },
22 	{ '?',	NORM,	"get this summary",		 help},
23 	{ 0, 0, 0 }
24 };
25