The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
From: "Nelson H. F. Beebe" <beebe@math.utah.edu>
To: tuhs@tuhs.org
Subject: [TUHS] Re: Stdin Redirect in Cu History/Alternatives?
Date: Mon, 12 Dec 2022 10:42:47 -0700	[thread overview]
Message-ID: <CMM.0.96.0.1670866967.beebe@gamma.math.utah.edu> (raw)

After my posting on Sat, 10 Dec 2022 17:42:14 -0700 about the recent
work on kermit 10.0, some readers asked why a serial line connection
and file transfer tool was still of interest, and a few others
responded with use cases.

Modern kermit has for several years supported ssh connections, and
Unicode, as well: here is a top-level command list:

	% kermit
	(~/) C-Kermit>? Command, one of the following:
	 add          define       hangup       msleep       resend       telnet
	 answer       delete       HELP         open         return       touch
	 apc          dial         if           orientation  rlogin       trace
	 array        directory    increment    output       rmdir        translate
	 ask          disable      input        pause        run          transmit
	 askq         do           INTRO        pdial        screen       type
	 assign       echo         kcd          pipe         script       undeclare
	 associate    edit         learn        print        send         undefine
	 back         enable       LICENSE      pty          server       version
	 browse       end          lineout      purge        set          void
	 bye          evaluate     log          push         shift        wait
	 cd           exit         login        pwd          show         where
	 change       file         logout       quit         space        while
	 check        finish       lookup       read         ssh          who
	 chmod        for          mail         receive      statistics   write
	 clear        ftp          manual       redial       status       xecho
	 close        get          message      redirect     stop         xmessage
	 connect      getc         minput       redo         SUPPORT
	 convert      getok        mget         reget        suspend
	 copy         goto         mkdir        remote       switch
	 date         grep         mmove        remove       tail
	 decrement    head         msend        rename       take
	or one of the tokens: ! # ( . ; : < @ ^ { 

Here are the descriptions of connection and character set translations:

	(~/) C-Kermit>help ssh

	Syntax: SSH [ options ] <hostname> [ command ]
	  Makes an SSH connection using the external ssh program via the SET SSH
	  COMMAND string, which is "ssh -e none" by default.  Options for the
	  external ssh program may be included.  If the hostname is followed by a
	  command, the command is executed on the host instead of an interactive
	  shell.

	(~/) C-Kermit>help connect

	Syntax: CONNECT (or C, or CQ) [ switches ]
	  Connect to a remote computer via the serial communications device given in
	  the most recent SET LINE command, or to the network host named in the most
	  recent SET HOST command.  Type the escape character followed by C to get
	  back to the C-Kermit prompt, or followed by ? for a list of CONNECT-mode
	  escape commands.

	Include the /QUIETLY switch to suppress the informational message that
	tells you how to escape back, etc.  CQ is a synonym for CONNECT /QUIETLY.

	Other switches include:

	/TRIGGER:string
	  One or more strings to look for that will cause automatic return to
	  command mode.  To specify one string, just put it right after the
	  colon, e.g. "/TRIGGER:Goodbye".  If the string contains any spaces, you
	  must enclose it in braces, e.g. "/TRIGGER:{READY TO SEND...}".  To
	  specify more than one trigger, use the following format:

	    /TRIGGER:{{string1}{string2}...{stringn}}

	  Upon return from CONNECT mode, the variable \v(trigger) is set to the
	  trigger string, if any, that was actually encountered.  This value, like
	  all other CONNECT switches applies only to the CONNECT command with which
	  it is given, and overrides (temporarily) any global SET TERMINAL TRIGGER
	  string that might be in effect.

	Your escape character is Ctrl-\ (ASCII 28, FS)

	(~/) C-Kermit>help translate

	Syntax: CONVERT file1 cs1 cs2 [ file2 ]
	Synonym: TRANSLATE
	  Converts file1 from the character set cs1 into the character set cs2
	  and stores the result in file2.  The character sets can be any of
	  C-Kermit's file character sets.  If file2 is omitted, the translation
	  is displayed on the screen.  An appropriate intermediate character-set
	  is chosen automatically, if necessary.  Synonym: XLATE.  Example:

	    CONVERT lasagna.txt latin1 utf8 lasagna-utf8.txt

	  Multiple files can be translated if file2 is a directory or device name,
	  rather than a filename, or if file2 is omitted.

-------------------------------------------------------------------------------
- Nelson H. F. Beebe                    Tel: +1 801 581 5254                  -
- University of Utah                                                          -
- Department of Mathematics, 110 LCB    Internet e-mail: beebe@math.utah.edu  -
- 155 S 1400 E RM 233                       beebe@acm.org  beebe@computer.org -
- Salt Lake City, UT 84112-0090, USA    URL: http://www.math.utah.edu/~beebe/ -
-------------------------------------------------------------------------------

             reply	other threads:[~2022-12-12 17:45 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-12 17:42 Nelson H. F. Beebe [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-11  0:42 Nelson H. F. Beebe
2022-12-11  2:16 ` Larry McVoy
2022-12-11  2:26   ` Warner Losh
2022-12-11  2:32     ` Larry McVoy
2022-12-11  2:33       ` Warner Losh
2022-12-11  2:39         ` Larry McVoy
2022-12-11  2:49           ` Bakul Shah
2022-12-11  3:10           ` Phil Budne
2022-12-11  4:17           ` Dan Cross
2022-12-11  4:45             ` Will Senn
2022-12-12 17:06           ` Doug McIntyre
2022-12-10 19:38 [TUHS] " segaloco via TUHS
2022-12-11  0:22 ` [TUHS] " Clem Cole
2022-12-11  2:37   ` segaloco via TUHS
2022-12-11 13:59   ` Michael Kjörling
2022-12-11 14:28     ` Steve Nickolas
2022-12-11 15:04       ` Dan Cross
2022-12-13  1:54         ` Larry McVoy
2022-12-11 17:18     ` Adam Thornton
2022-12-11 18:54       ` Michael Kjörling
2022-12-11 19:55         ` Dave Horsfall
2022-12-11 20:03           ` Larry McVoy
2022-12-11 23:22             ` segaloco via TUHS
2022-12-12 21:34             ` Dave Horsfall
2022-12-12 21:46               ` Chet Ramey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CMM.0.96.0.1670866967.beebe@gamma.math.utah.edu \
    --to=beebe@math.utah.edu \
    --cc=tuhs@tuhs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).