home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pdp11 / k11mnu.com < prev    next >
Text File  |  2020-01-01  |  3KB  |  71 lines

  1. $ ! RSTS version 9.0 Kermit account login command file
  2. $ ! Note theat the account should have NOPASS and CAPTIVE
  3. $ ! attributes.
  4. $ set noon
  5. $ write 0 ""
  6. $ tel br kermit logged in
  7. $ help:
  8. $ set ter/vt100
  9. $ write 0 ""
  10. $ write 0 "This is a public Kermit account.  Currently, you can either"
  11. $ write 0 "run Kermit to transfer files to you system, use TYPE to get"
  12. $ write 0 "HEX  files,  DIR to look at this account,  XDIR to get  the"
  13. $ write 0 "directory of online Kermit files, WHO to see system status,"
  14. $ write 0 "LOG to logout, or TELL to talk to the systems manager. HELP"
  15. $ write 0 "will reprint this message"
  16. $ write 0 "All Kermit files OTHER than Kermit-11 are in KERMIT:.  The"
  17. $ write 0 "Kermit-11 sources and hex files are in PDPKER$SRC: and the"
  18. $ write 0 "executable files are in PDPKER$EXE:"
  19. $ write 0 ""
  20. $ write 0 "Files of interest for PDP-11's"
  21. $ write 0 ""
  22. $ write 0 "RSTS/E    PDPKER$EXE:K11.TSK    , PDPKER$EXE:K11NRS.TSK"
  23. $ write 0 "RT11      PDPKER$EXE:K11XM.SAV  , PDPKER$EXE:K11RT4.SAV"
  24. $ write 0 "P/OS      PDPKER$EXE:K11POS.TSK , KERMIT:PRO???.*"
  25. $ write 0 "RSX       PDPKER$EXE:K11RSX.TSK"
  26. $ write 0 "PRO/RT11  PDPKER$EXE:K11XM.SAV"
  27. $ write 0 "General   PDPKER$SRC:K11INS.DOC,K11HEX.FTN,K11HEX.BAS,K11HEX.MAC"
  28. $ write 0 "          PDPKER$SRC:K11HLP.HLP,K11CMD.MAC"
  29. $ write 0 "Rainbow   KERMIT:MS????.*, KERMIT:86????.*"
  30. $ write 0 ""
  31. $ loop:
  32. $ set data
  33. $ on control_c then goto endloop
  34. $ inquire/nopun junk "Ker[mit],Help,Type,Dir,Xdir,Who,LOG or TELL ? "
  35. $ write 0 ""
  36. $ junk = f$edit(junk,255)
  37. $ if junk .eqs. "" then goto endloop
  38. $ set nodata
  39. $ if f$instr(1,junk,"XDI") .eq. 1 then TYP 1:[4,0]KERMIT.DIR
  40. $ if f$instr(1,junk,"HEL") .eq. 1 then goto help
  41. $ if f$instr(1,junk,"EXI") .eq. 1 then goto exit
  42. $ if f$instr(1,junk,"KER") .ne. 1 then goto notker
  43. $ write 0 ""
  44. $ write 0 "This  is  Kermit-11  running  on  RSTS/E.  The most useful mode of"
  45. $ write 0 "operation is to run Kermit-11 as a server, which is done  via  the"
  46. $ write 0 "SERVER  command.  Once  you  type SER to Kermit-11, escape back to"
  47. $ write 0 "your local system and use the GET command to get a file  from  the"
  48. $ write 0 "PDP  11/70  here,  or  use the SEND command to send a file to this"
  49. $ write 0 "system. Other commands, such  as  REMOTE  DIR,  are  supported  by"
  50. $ write 0 "Kermit-11  but  may  not be supported by your local system. Please"
  51. $ write 0 "note  that  RSTS/E  uses  ?  instead  of  %  for  single  wildcard"
  52. $ write 0 "character  matching,  and  the  *  is  used  to wildcard an entire"
  53. $ write 0 "filename or filetype.  RSTS Kermit will convert % to ? for the GET"
  54. $ write 0 "command and the REM DIR command."
  55. $ write 0 ""
  56. $ ker
  57. $ goto endloop
  58. $ notker:
  59. $ if f$instr(1,junk,"LOG") .eq. 1 then LOG
  60. $ if f$instr(1,junk,"WHO") .eq. 1 then SY
  61. $ if f$instr(1,junk,"DIR") .eq. 1 then DIR
  62. $ if f$instr(1,junk,"TYP") .eq. 1 then TYP
  63. $ if f$instr(1,junk,"TEL") .ne. 1 then goto endloop
  64. $ write 0 "To talk to BRIAN, type BR your message in response to the TELL>"
  65. $ write 0 "To return to the menu, type a control Z"
  66. $ TEL
  67. $ endloop:
  68. $ goto loop
  69. $ exit:
  70. $ exit
  71.