home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / REFLECT.ZIP / R2.HLP < prev    next >
Encoding:
Text File  |  1989-11-30  |  37.8 KB  |  1,390 lines

  1. ^B HELP
  2. ^B H
  3.  
  4. HELP [<keyword>]
  5.     Provides command language help information for the following topics.
  6.     You may abbreviate to H.  (Abbreviations are in parentheses.)
  7. &         $DATE      $DIR        $SERIAL      $TIME       ACCEPT
  8. ALERT         BACKGROUND   BACKUP    BREAK         CHAIN(C)       CHDIR(CD)
  9. CLOSE         COLUMN      CONTINUE    COPY         DCD       DIR
  10. DISCONNECT   DISPLAY      Drive     ELSE         ENDIF       ENV
  11. EOF         ERASE(DEL)   ERROR     ERROR-CODE   EXIST       EXIT
  12. FIND         FOR      FOREGROUND    FOUND         GOSUB       GOTO
  13. HARDEXIT     HELP(H)      HOLD        IF         INVOKE(X)       IRECEIVE
  14. ISEND         KBYE      KFINISH    KGET         KRECEIVE(KR)  KSEND(KS)
  15. Label         LENGTH      LET        LOAD         LOG       LOWER
  16. MID         MSAVE(PS)      ONEXIT    OPEN         PACK       PRINT(P)
  17. QUIET(Q)     READ      READHOST    RECEIVE(R)   RENAME(REN)   RESETCOMM
  18. RESTORE      RETURN      ROW        SAVE         SCOLUMN       SEND(S)
  19. SET         SET1      SET2        SET3         SHELL       SROW
  20. STOP         String      Switches    Syntax         Text       TRANSMIT
  21. TSR         TYPE(T)      UPPER     VALUE         Variable       Vaxlink
  22. VERIFY(V)    WAIT      WRITE     XRECEIVE(XR) XSEND(XS)
  23. The following symbols indicate syntax and are not actually typed:
  24.       < >   |    { }   [ ]    (Type HELP SYNTAX for symbol meanings.)
  25. ^E
  26. ^B &
  27.  
  28.     &
  29.  
  30.         Concatenate strings.  Used to concatenate a pair of strings.
  31.  
  32.         Example:    DISPLAY  V2 & "!"
  33.  
  34. ^E
  35. ^B $DATE
  36.  
  37.     $DATE
  38.  
  39.         Pre-defined variable which contains the current date when used
  40.         in a command.   May be used with string functions as in:
  41.  
  42.             DISPLAY MID($DATE,3,4)
  43.  
  44. ^E
  45. ^B $DIR
  46.  
  47.     $DIR
  48.  
  49.         Pre-defined variable which contains the current directory
  50.         when used in a command.  May be used with string functions
  51.         as in:
  52.  
  53.             DISPLAY MID($DIR,1,5)
  54.  
  55. ^E
  56. ^B $SERIAL
  57.  
  58.     $SERIAL
  59.  
  60.         Pre-defined variable which contains the serial number
  61.         of the product when used in a command.  May be used with
  62.         string functions as in:
  63.  
  64.             DISPLAY MID($SERIAL,9,14)
  65.  
  66. ^E
  67. ^B $TIME
  68.  
  69.     $TIME
  70.  
  71.         Pre-defined variable which contains the current time when used
  72.         in a command.  May be used with string functions as in:
  73.  
  74.             DISPLAY MID($TIME,1,2)
  75.  
  76. ^E
  77. ^B ACCEPT
  78.  
  79.     ACCEPT [<time>] V{0-n} [UNTIL {<text> | FULL}] [LIMIT <number>]
  80.     [TERMINATOR V{0-n}] [NOECHO]
  81.  
  82.         Accepts a value from the keyboard into a command variable.
  83.  
  84.         UNTIL "^M" is the default, and terminates the string upon
  85.         receipt of any one of the characters specified.  UNTIL FULL
  86.         causes termination of the string when the limit is reached.
  87.  
  88.         TERMINATOR, as in READHOST, stores the character that
  89.         terminats the string.
  90.  
  91.         A timeout similar to READHOST's allows the use of IF FOUND in
  92.         conjunction with ACCEPT.
  93.  
  94.         NOECHO prevents input from appearing on the screen as it is
  95.         typed.
  96.  
  97. ^E
  98. ^B ALERT
  99.  
  100.     ALERT <string>
  101.  
  102.         Specifies a message to display in the foreground while
  103.         Reflection runs in the background.    The message blinks for a
  104.         limited amount of time, unless superseded by another message.
  105.  
  106. ^E
  107. ^B BACKGROUND
  108.  
  109.     BACKGROUND
  110.  
  111.         Forces Reflection into background as if the HOT-KEY had
  112.         been struck.  This command can occur after WAIT or HOLD
  113.         to set specific conditions to invoke background.  The FGD
  114.         logical can be used to test Reflection's current state.
  115.  
  116. ^E
  117. ^B BACKUP
  118.  
  119.     BACKUP [<d:>][<path>]<filename> [<hostfile>]
  120.            [/S] [/C] [/D:<date>] [/T:<time>] [/L:<filespec>]
  121.  
  122.         Backs up PC files to a host file.
  123.         NOTE: This option is only available with PLUS versions of
  124.           Reflection.
  125.  
  126.     PARAMETER    DESCRIPTION
  127.     [<d:>]        Drive location of files to be backed up.
  128.     [<path>]    Directory or subdirectory path to be backed up.
  129.     <filename>    Filename to be backed up.  Wildcards are acceptable.
  130.     [<hostfile>]    Filename on the host computer.    Default name is BACKUP.
  131.     [/S]        Backs up all subdirectories of specified path.
  132.     [/C]        Backs up all specified files ignoring modify bit.
  133.     [/D:<date>]    Backs up files created or modified on or after
  134.             mm-dd-yy.
  135.     [/T:<time>]    Backs up file created or modified at or after hh:mm:ss.
  136.     [/L:<filespec>] Backup report filename.  Default name is BACKUP.LOG.
  137.  
  138. ^E
  139. ^B BREAK
  140.  
  141.     BREAK
  142.  
  143.         Transmits a break to the host computer.
  144.  
  145. ^E
  146. ^B CHAIN
  147. ^B C
  148.  
  149.     CHAIN <filespec>
  150.  
  151.         Executes a new command file.  Does not return to caller.
  152.         You may also use C.
  153.  
  154. ^E
  155. ^B CHDIR
  156. ^B CD
  157.  
  158.     CHDIR [<path>]
  159.  
  160.         Changes directories.  You may also use CD.
  161.  
  162. ^E
  163. ^B CLOSE
  164.  
  165.     CLOSE {PRINTER | DISK | REMOTE | <file number>}
  166.  
  167.         Closes printer, output disk file, or remote device.
  168.         Alternatively, closes a file by its file number.
  169.  
  170. ^E
  171. ^B COLUMN
  172.  
  173.     COLUMN
  174.  
  175.         The COLUMN function returns the number of the current column
  176.         in display memory.
  177.  
  178. ^E
  179. ^B CONTINUE
  180.  
  181.     CONTINUE [ON | OFF]
  182.  
  183.         Continues execution even if the next statement fails.  If the
  184.         the optional ON is included, failure never stops execution.
  185.  
  186. ^E
  187. ^B COPY
  188.  
  189.     COPY <filespec1> [<filespec2>]
  190.  
  191.         Copies one file to another.  (Similar to the DOS command but
  192.         excludes the append options and the switches.)
  193.  
  194. ^E
  195. ^B DCD
  196.  
  197.     DCD
  198.  
  199.         A logical used to check for a data carrier signal.
  200.  
  201. ^E
  202. ^B DIR
  203.  
  204.     DIR [<filespec>]
  205.  
  206.         Lists the file directory.  Wildcards are allowed, but switches
  207.         are not.
  208.  
  209. ^E
  210. ^B DISCONNECT
  211.  
  212.     DISCONNECT
  213.  
  214.         Forces a disconnect from the PC side.  DISCONNECT functions
  215.         differently depending on the type of host connection.  If you
  216.         are connected via a serial port, Reflection lowers the Data
  217.         Terminal Ready (DTR) signal for 200 milliseconds.  This
  218.         function disconnects a properly configured modem.
  219.  
  220.         If you are connected via LAN, the appropriate LAN disconnect
  221.         signal is transmitted.
  222.  
  223.         You may also use the keystroke Ctrl-F4.
  224.  
  225. ^E
  226. ^B DISPLAY
  227.  
  228.     DISPLAY {<string> | <arithmetic expression>}
  229.  
  230.         Displays data on the screen.  This data is interpreted as
  231.         having come from datacomm.    Use ^M and ^J for carriage
  232.         returns and linefeeds, respectively.  Note that ^A =
  233.         Ctrl-A, etc.  The string is limited to 80 characters.
  234.  
  235. ^E
  236. ^B DRIVE
  237.  
  238.      <drive letter>:
  239.  
  240.         Changes the current drive.    (A standard DOS command.)
  241.  
  242. ^E
  243. ^B ELSE
  244.  
  245.     ELSE
  246.  
  247.         Specifies the alternate case (if any) associated with an IF.
  248.  
  249. ^E
  250. ^B ENDIF
  251.  
  252.     ENDIF
  253.  
  254.         Terminates the conditional execution associated with an IF.
  255.  
  256. ^E
  257. ^B ENV
  258.  
  259.     ENV("<environment name>")
  260.  
  261.         This function provides a means of gaining local system
  262.         information, which varies according to the computer you are
  263.         using.  The function ENV provides access to any active DOS SET
  264.         environment commands on the PC.
  265.  
  266. ^E
  267. ^B EOF
  268.  
  269.     EOF(<file number>)
  270.  
  271.         A logical function.  A value of TRUE means that the indicated
  272.         file is at its end.  NOTE:    The parentheses are required in
  273.         this command.
  274.  
  275. ^E
  276. ^B ERASE
  277. ^B DEL
  278.  
  279.     ERASE <filespec>
  280.  
  281.         Erases specified files.  You may also use DEL.
  282.         (Similar to the DOS command.)
  283.  
  284. ^E
  285. ^B ERROR
  286.  
  287.     ERROR
  288.  
  289.         A logical used to check the status of the previous command.  A
  290.         value of TRUE means that the previous command failed.
  291.  
  292. ^E
  293. ^B ERROR-CODE
  294.  
  295.     ERROR-CODE
  296.  
  297.         This function indicates the specific number of the error which
  298.         occured on the last line.  Blank and Comment lines reset the
  299.         error to 0.  The value 0 indicates that the previous command
  300.         has completed normally.
  301.  
  302. ^E
  303. ^B EXIST
  304.  
  305.     EXIST(<string>)
  306.  
  307.         A logical used to check the existence of a file.  A value of
  308.         TRUE means that the indicated file exists.    NOTE:  The
  309.         parentheses are required in this command.
  310.  
  311. ^E
  312. ^B EXIT
  313.  
  314.     EXIT [<arithmetic expression>]
  315.  
  316.         Exits Reflection and returns to DOS.  You can optionally set
  317.         the DOS error level.
  318.  
  319.         If BACKGROUND is being used, this command is equivalent to the
  320.         BACKGROUND and the STOP commands both being executed.
  321.  
  322.         See also HARDEXIT.
  323.  
  324. ^E
  325. ^B FGD
  326.  
  327.     FGD
  328.  
  329.         A logical used to check whether or not Reflection is
  330.         currently in the ForeGrounD (FGD True) or background.
  331.  
  332. ^E
  333. ^B FIND
  334.  
  335.     FIND(<string1>,<string2>)
  336.  
  337.         A string function which finds the position of string1 within
  338.         string2.  A numeric value is returned.  Zero means the string
  339.         was not found.
  340.  
  341. ^E
  342. ^B FOR
  343.  
  344.     FOR V{0-n} IN <filespec> <executable command>
  345.  
  346.         Allows a command to be repeated while a specified variable
  347.         changes value through a set of filenames.
  348.  
  349.         Example:  FOR V1 IN *.* TYPE $$1
  350.  
  351.         See VARIABLE.
  352.  
  353. ^E
  354. ^B FOREGROUND
  355.  
  356.     FOREGROUND
  357.  
  358.         Forces Reflection to the foreground as if the HOT-KEY had
  359.         been struck.  This command can occur after WAIT or HOLD
  360.         to set specific conditions to return Reflection to the
  361.         background.  The FGD logical can be used to test the
  362.         current state of Reflection.
  363.  
  364. ^E
  365. ^B FOUND
  366.  
  367.     FOUND
  368.  
  369.         A logical set by the execution of the HOLD, WAIT, and
  370.         READHOST commands.    A value of TRUE indicates that the
  371.         specified text was found.
  372.  
  373. ^E
  374. ^B GOSUB
  375.  
  376.     GOSUB <labelname> [<parameters>]
  377.  
  378.         The GOSUB command allows you to reference a label within a
  379.         command file and return to the line following GOSUB in the
  380.         same file when RETURN or the end of the file is reached.
  381.  
  382. ^E
  383. ^B GOTO
  384.  
  385.     GOTO <labelname>
  386.  
  387.         Transfers control to the statement following the specified
  388.         label.
  389.  
  390. ^E
  391. ^B HARDEXIT
  392.  
  393.     HARDEXIT [<arithmetic expression>]
  394.  
  395.         Exits Reflection and returns to DOS.  You can optionally set
  396.         the DOS error level.  This command unloads Reflection from
  397.         memory.
  398.  
  399. ^E
  400. ^B HELP
  401.  
  402.     HELP [<keyword>]
  403.  
  404.         Provides command language help.  HELP alone lists topics.  You
  405.         may abbreviate the command to H.
  406.  
  407. ^E
  408. ^B HOLD
  409.  
  410.     HOLD {[[UNTIL] <time>] [FOR <string>]}
  411.  
  412.         The HOLD command allows a command file to suspend operations
  413.         until a specified time or information condition has been met.
  414.         This allows the user to have access to the keyboard.
  415.  
  416. ^E
  417. ^B IF
  418.     IF <condition>
  419.  
  420.         Tests a logical condition.    If false, execution is suspended
  421.         until an ELSE or ENDIF is encountered.
  422.  
  423.         Example:  IF V1=> V2 AND NOT ERROR
  424.  
  425. ^E
  426. ^B INVOKE
  427. ^B X
  428.  
  429.     [INVOKE] <filespec> [<parameters>]
  430.  
  431.         Invokes (executes) a command file (control returns to the
  432.         caller).  You may also use X.  Use of the command filename
  433.         alone allows passing parameters.
  434.  
  435. ^E
  436. ^B IRECEIVE
  437.  
  438.      IRECEIVE <filespec> [;F<filespec>] [;C | ;T] FROM <hostfile>
  439.      [;S<password>] [;E<number>] [ASCII | BINARY] [DELETE | APPEND]
  440.  
  441.      <filespec>     Name that the file transferred from the mainframe
  442.             will have on the PC.
  443.      [;F<filespec>]    Specifies the name of a configuration file
  444.             built by RIXCONF.  (Default is to look for RIX.CFG).
  445.      [;C | ;T]        ;C specifies VM/CMS mode. ;T specifies MVS/TSO mode.
  446.      FROM <hostfile>    Name of the file on the host.
  447.      [;S<password>]    Valid only for transfers to and from a TSO
  448.             operating system.
  449.      [;E<number>]    Specifies the echo group size.
  450.      [ASCII | BINARY]    If ASCII is used, records from the host will
  451.             be translated from EBCDIC to ASCII. If BINARY, the data
  452.             downloaded from the host is not translated.
  453.      [DELETE | APPEND]    If DELETE is used, the PC file is deleted before
  454.             the file transfer. If APPEND, the mainframe file
  455.             being received will be appended to the file on the PC.
  456.  
  457. ^E
  458. ^B ISEND
  459.  
  460.     ISEND <filespec> [;F<filespec>] [;C | ;T] TO <hostfile> [;V]
  461.       [;S<password>] [;E<number>] [ASCII [NOCRLF] | BINARY
  462.       [NOCRLF]] [DELETE | APPEND] [REC = <number>]
  463.     <filespec>         Name of the file on the PC that will be sent to the IBM.
  464.     [;F<filespec>]   Specifies the name of configuration file built by RIXCONF.
  465.     [;C|;T]         ;C specifies VM/CMS mode. ;T specifies MVS/TSO mode.
  466.     TO <hostfile>    Name that the file will have on the host.
  467.     [;V]         Selects variable-length records at the host.
  468.     [;S<password>]   Valid only for transfers to and from a TSO OP system.
  469.     [;E<number>]     Specifies the echo group size.
  470.     [ASCII[NOCRLF]|  If ASCII, converts ASCII to EBDIC. If BINARY, no
  471.     BINARY[NOCRFL]]  conversion takes place. Without NOCRLF, each line in the
  472.              PC file that ends with a carriage return/linefeed becomes
  473.              one logical record on the mainframe. With NOCRLF, the PC
  474.              file is segmented into logical records on the host.
  475.     [DELETE|APPEND]  If DELETE is used, the mainframe file is deleted before
  476.              the file transfer. If APPEND, the PC file being sent
  477.              will be appended to the file on the mainframe.
  478.     [REC = <number>] Specifies the record length to be used on the host.
  479.  
  480. ^E
  481. ^B KBYE
  482.  
  483.     KBYE
  484.  
  485.          Takes KERMIT out of server mode and logs you off
  486.          of the host.  May be used from the command line or
  487.          within a command file.
  488.  
  489. ^E
  490. ^B KFINISH
  491.  
  492.     KFINISH
  493.  
  494.          Removes KERMIT from server mode but retains the host
  495.          connection.  May be used from the command line or
  496.          within a command file.
  497.  
  498. ^E
  499. ^B KGET
  500.  
  501.        KGET <string> [FROM <string>] [APPEND|DELETE] [ASCII|BINARY]
  502.  
  503.         Receives a file from a remote KERMIT running in server mode.
  504.         The filename may be a string expression, but <string> must
  505.         result in a filespec.  Without the FROM clause, DELETE is
  506.         assumed.
  507.  
  508. ^E
  509. ^B KRECEIVE
  510. ^B KR
  511.  
  512.     KRECEIVE [<string> [FROM <string>] [APPEND|DELETE] [ASCII|BINARY]]
  513.  
  514.         Receives a file from the host using KERMIT protocol.  The
  515.         filename may be a string expression.  You may also use KR.    If
  516.         all parameters are omitted, then the filename used will be that
  517.         which has been specified by the sender.  Omitting parameters
  518.         allows the sender to use wildcards and send multiple files;
  519.         DELETE is assumed in this case.
  520.  
  521. ^E
  522. ^B KSEND
  523. ^B KS
  524.  
  525.     KSEND <string> [TO <string>] [ASCII|BINARY]
  526.  
  527.         Sends a file to the host using KERMIT protocol.  The
  528.         filename may be a string expression.  You may also use KS.
  529.         If the optional TO parameter is omitted, then you may use
  530.         wildcards in the required parameter to send multiple files
  531.         in a single command.
  532.  
  533. ^E
  534. ^B LABEL
  535.  
  536.     :<labelname>
  537.  
  538.         Labels a position in a command file.  Entered as a colon
  539.         followed by a labelname.
  540.  
  541. ^E
  542. ^B LAT_CONNECT
  543.  
  544.     CONNECT
  545.  
  546.     CONNECT {<service>} [<description>]
  547.  
  548.         <service>     The name of a valid LAT service. To
  549.                  determine valid services, use SHOW SERVICES.
  550.  
  551.         <description>     A string containing no spaces or tabs
  552.                  that is displayed in SHOW SESSIONS
  553.                  output. This can be used to differentiate
  554.                  between multiple sessions to the same
  555.                  service (18 chars maximum).
  556.  
  557.     CONNECT creates a new session to the service specified. You can
  558.     create a maximum of 5 sessions to the same service.
  559.  
  560. ^E
  561. ^B LAT_DISCONNECT
  562.  
  563.     DISCONNECT
  564.  
  565.     DISCONNECT {<session number> | ALL}
  566.  
  567.         <session number> The session number of an existing
  568.                  session, see SHOW SESSIONS.
  569.  
  570.     DISCONNECT terminates the LAT session corresponding to
  571.     <session number>. If 'ALL' is specified, all LAT sessions
  572.     not in use by another CI session are terminated.
  573.  
  574. ^E
  575. ^B LAT_FORWARDS
  576.  
  577.     FORWARDS
  578.  
  579.         FORWARDS resumes the session with the next highest session
  580.         number, as shown in the session list.  If your current session
  581.         has the highest session number or you have no current session,
  582.         FORWARDS resumes the first session in the session list.  If the
  583.         session resumed is in the 'stopped' state (see SHOW SESSIONS),
  584.         the reason is displayed, and Reflection returns to CI (Command
  585.         Interpreter) mode.
  586.  
  587. ^E
  588. ^B LAT_HELP
  589.  
  590.     HELP
  591.  
  592.     The LAT command interpreter provides all of the functionality
  593.     required to establish and manage multiple LAT terminal sessions to
  594.     any LAT services available to the user.
  595.  
  596.     To return to the LAT CI after a connection to a LAT service has been
  597.     made, press Ctrl-F8 or disconnect from the current service.
  598.  
  599.     To move between sessions without returning to the LAT CI, press
  600.     Alt-N.
  601.  
  602.     Additional help available:
  603.  
  604.         CONNECT        DISCONNECT        FORWARDS
  605.         INSTALL        RESUME            SHOW
  606.  
  607. ^E
  608. ^B LAT_INSTALL
  609.  
  610.     To install the LAT CI, enter the following command at the DOS prompt:
  611.  
  612.                  LATCI
  613.  
  614.     By default, the LAT CI supports 4 LAT sessions (with each session
  615.     using 4 receive slots) and 2 CI sessions (i.e., you can have 2 copies
  616.     of Reflection both accessing the CI).  These parameters may be changed
  617.     with the following switches:
  618.         /C:n  Sets maximum number of CI sessions, 1 <= n <= 4.
  619.         /L:n  Sets maximum number of LAT sessions, 1 <= n <= 8.
  620.         /S:n  Sets receive slots per LAT session,  2 <= n <= 9.
  621.  
  622.     The LAT driver LAT.EXE must be installed prior to installing the
  623.     LAT CI. If you do not install the LAT CI prior to running Reflection,
  624.     you will NOT receive an error - instead Reflection will load the
  625.     LAT CI automatically.  When the LAT CI is loaded in this manner, it
  626.     function with the following restrictions:
  627.         - The LAT CI will be loaded with the following switches
  628.             LATCI /C:1 /L:2 /S:4
  629.           These parameters cannot be changed.
  630.         - When Reflection is terminated, all LAT sessions are
  631.           also terminated.
  632.  
  633. ^E
  634. ^B LAT_RESUME
  635.  
  636.     RESUME
  637.  
  638.     RESUME [<session number>]
  639.  
  640.     <session number> is the number of an existing LAT session to resume.
  641.  
  642.     RESUME resumes the current session if no <session number>
  643.     is specified.  If the session resumed is in a 'stopped' state
  644.     (see SHOW SESSIONS), the reason is displayed, and Reflection
  645.     returns to CI mode.
  646.  
  647. ^E
  648. ^B LAT_SHOW
  649.  
  650.     SHOW
  651.  
  652.     Additional help available:
  653.  
  654.     SERVICES    SESSIONS
  655.  
  656. ^E
  657. ^B LAT_SHOW_SER
  658.  
  659.     SHOW SERVICES
  660.  
  661.     SHOW SERVICES lists the name of the services in the LAT service
  662.     directory.
  663.  
  664.     Services are placed in the directory in two ways:
  665.  
  666.          1). If you are using DECnet/DOS then, all LAT services listed
  667.          in the PC DECNET database are entered in the table
  668.          (no attempt is made to validate the entries).
  669.          2). After LATCI.EXE has been installed, any LAT configuration
  670.          messages announcing new services are entered.
  671.  
  672.     The LAT directory service table has a default table size of 10.
  673.     When the table is full, all new service announcements are ignored.
  674.     The service table size can be changed by using the /D:nn switch
  675.     when installing LAT.EXE.
  676.  
  677. ^E
  678. ^B LAT_SHOW_SES
  679.  
  680.     SHOW SESSIONS
  681.  
  682.     SHOW SESSIONS displays the following information about each active
  683.     session:
  684.         - Session number
  685.         - Service name
  686.         - Description entered in CONNECT command
  687.         - Session status:
  688.              'connected' - Connection to host is active.
  689.              'stopped'   - Connection to host has been terminated,
  690.                    resuming a stopped session displays
  691.                    the reason the session stopped.
  692.              'current'   - This session is your current session.
  693.              'in use'    - This LAT session is the current session of
  694.                    another CI user.
  695.  
  696. ^E
  697. ^B CTM_CONNECT
  698.  
  699.     CONNECT
  700.  
  701.     CONNECT {<node>} [<description>]
  702.  
  703.         <node>         The name a valid DECnet node. To
  704.                  determine valid nodes use SHOW NODES.
  705.  
  706.         <description>     A string containing no spaces or tabs
  707.                  that is displayed in SHOW SESSIONS
  708.                  output. This can be used to differentiate
  709.                  between multiple sessions to the same
  710.                  node (18 chars maximum).
  711.  
  712.     CONNECT creates a new session to the node specified. You can
  713.     create a maximum of 5 sessions to the same node.
  714.  
  715. ^E
  716. ^B CTM_DISCONNECT
  717.  
  718.     DISCONNECT
  719.  
  720.     DISCONNECT {<session number> | ALL}
  721.  
  722.         <session number> is the session number of an existing
  723.                  session, see SHOW SESSIONS.
  724.  
  725.     DISCONNECT terminates the CTERM session corresponding to
  726.     <session number>.  If 'ALL' is specified, all CTERM sessions not in
  727.     use by another CI session are terminated.
  728.  
  729. ^E
  730. ^B CTM_FORWARDS
  731.  
  732.     FORWARDS
  733.  
  734.     FORWARDS resumes the session with the next highest session number
  735.     as shown in the session list.  If your current session has the highest
  736.     session number or you have no current session, FORWARDS resumes the
  737.     first session in the session list. If the session resumed is in the
  738.     'stopped' state (see SHOW SESSIONS), the reason is displayed, and
  739.     Reflection returns to CI (Command Interpreter) mode.
  740.  
  741. ^E
  742. ^B CTM_HELP
  743.  
  744.     HELP
  745.  
  746.     The CTERM command interpreter provides all of the functionality
  747.     required to establish and manage multiple CTERM terminal sessions to
  748.     any DECnet host nodes available to the user.
  749.  
  750.     To return to the CTERM CI after a connection to a CTERM node has been
  751.     made, press Ctrl-F8 or disconnect from the current node.
  752.  
  753.     To move between sessions without returning to the CTERM CI, press
  754.     Alt-N.
  755.  
  756.     Additional help available:
  757.  
  758.         CONNECT        DISCONNECT        FORWARDS
  759.         INSTALL        RESUME            SHOW
  760.  
  761. ^E
  762. ^B CTM_INSTALL
  763.  
  764.     INSTALL
  765.  
  766.     To install the CTERM CI, enter the following command at the
  767.     DOS prompt:
  768.  
  769.                  CTERMCI
  770.  
  771.     By default, the CTERM CI supports 4 CTERM sessions and 2 CI
  772.     sessions (i.e., you can have 2 copies of Reflection both accessing
  773.     the CI).  These parameters may be changed with the following
  774.     switches:
  775.         /C:n  Sets maximum number of CI sessions, 1 <= n <= 4.
  776.         /L:n  Sets maximum number of CTERM sessions, 1 <= n <= 8.
  777.  
  778.     The CTERM driver CTERM.EXE must be installed prior to installing the
  779.     CTERM CI. If you do not install the CTERM CI prior to running
  780.     Reflection, you will receive an error message.
  781.  
  782. ^E
  783. ^B CTM_RESUME
  784.  
  785.     RESUME
  786.  
  787.     RESUME [<session number>]
  788.  
  789.     <session number> is the number of an existing CTERM session to resume.
  790.  
  791.     RESUME resumes the current session if no <session number>
  792.     is specified.  If the session resumed is in the 'stopped' state
  793.     (see SHOW SESSIONS), the reason is displayed, and Reflection
  794.     returns to CI mode.
  795.  
  796. ^E
  797. ^B CTM_SHOW
  798.  
  799.     SHOW
  800.  
  801.     Additional help available:
  802.  
  803.     NODES    SESSIONS
  804.  
  805. ^E
  806. ^B CTM_SHOW_NODE
  807.  
  808.     SHOW NODES
  809.  
  810.     SHOW NODES lists the name of the nodes in your PC DECnet database.
  811.     Node names are added to the database using the DECnet/DOS NCP.EXE
  812.     utility.
  813.  
  814. ^E
  815. ^B CTM_SHOW_SES
  816.  
  817.     SHOW SESSIONS
  818.  
  819.     SHOW SESSIONS displays the following information about each active
  820.     session:
  821.         - Session number
  822.         - Node name
  823.         - Description entered in CONNECT command
  824.         - Session status:
  825.              'connected' - Connection to host is active.
  826.              'stopped'   - Connection to host has been terminated,
  827.                    resuming a stopped session will display
  828.                    the reason the session stopped.
  829.              'current'   - This session is your current session.
  830.              'in use'    - This CTERM session is the current session
  831.                    of another CI user.
  832.  
  833. ^E
  834. ^B LENGTH
  835.  
  836.     LENGTH(<string>)
  837.  
  838.         String function which returns the number of characters in a
  839.         string.
  840.         NOTE:  The parentheses are required in this command.
  841.  
  842. ^E
  843. ^B LET
  844.  
  845.     LET V{0-n} = {<string> | <arithmetic expression>| <logical> }
  846.  
  847.         Assigns a value to a variable.
  848.  
  849.         See VARIABLE.
  850.  
  851. ^E
  852. ^B LOAD
  853.  
  854.     LOAD <filespec>
  855.  
  856.         Loads and activates a configuration data file.
  857.  
  858. ^E
  859. ^B LOG
  860.  
  861.     LOG [OFF]
  862.  
  863.         Logs incoming data to any open output files or devices.
  864.  
  865. ^E
  866. ^B LOWER
  867.  
  868.     LOWER(<string>)
  869.  
  870.         String function which produces a string with all upper case
  871.         letters changed to lower case.
  872.         NOTE:  The parentheses are required in this command.
  873.  
  874. ^E
  875. ^B MID
  876.  
  877.     MID(<string>,<start>,<end>)
  878.  
  879.         String function which extracts the MIDdle characters of a
  880.         given string by specifying the starting and ending positions.
  881.         NOTE:  The parentheses are required in this command.
  882.  
  883. ^E
  884. ^B MSAVE
  885. ^B PS
  886.  
  887.     MSAVE {PRINTER | REMOTE | <filespec> [APPEND | DELETE]}
  888.  
  889.         Saves the contents of display memory to the specified file
  890.         or device.    The current PRINTER | REMOTE settings are
  891.         ignored and are unaffected.  You may also use PS.
  892.  
  893. ^E
  894. ^B ONEXIT
  895. ^B ON
  896. ^B O
  897.  
  898.     ON EXIT <command>
  899.  
  900.         NOTE:  The command ON EXIT is two words.  It shows as one
  901.         word in the HELP screen for inquiring purposes only.
  902.  
  903.         When Reflection is exited, the command following ON EXIT
  904.         is immediately executed.  If Reflection has been placed
  905.         into background, only a HARDEXIT or Alt-X will invoke the
  906.         ON EXIT command.
  907.  
  908. ^E
  909. ^B OPEN
  910.  
  911.     OPEN {PRINTER | REMOTE | <filespec> [APPEND | DELETE]}
  912.     OPEN  <filespec> {APPEND | DELETE | OUTPUT | INPUT} AS <file number>
  913.  
  914.         The first form opens an output file which can then be used as
  915.         a "to" device.  The second form opens a file for input or
  916.         output via a file number.
  917.  
  918. ^E
  919. ^B PACK
  920.  
  921.     PACK(<string>)
  922.  
  923.         String function which produces a string with all leading,
  924.         trailing, and redundant spaces removed.
  925.         NOTE:  The parentheses are required in this command.
  926.  
  927. ^E
  928. ^B PRINT
  929. ^B P
  930.  
  931.     PRINT {<string> | <filespec>}
  932.  
  933.         Prints a string or file.  You may also use P.
  934.  
  935. ^E
  936. ^B QUIET
  937. ^B Q
  938.  
  939.     QUIET {COMMAND | DISPLAY | STATUS} {ON | OFF}
  940.  
  941.         Sets command, display, or status to a quiet state (ON),
  942.         or returns to normal quiet OFF state. You may also use Q.
  943.         STATUS refers to the file transfer menu.
  944.  
  945. ^E
  946. ^B READ
  947.  
  948.     READ <file number> V{0-n}
  949.  
  950.         Reads a line from an opened file into a variable.  Data up to
  951.         a linefeed or a maximum of 80 characters is read into the
  952.         variable.  There is no data editing.
  953.  
  954.         See VARIABLE.
  955.  
  956. ^E
  957. ^B READHOST
  958.  
  959.     READHOST [<time>] V{0-n} [UNTIL <text>]
  960.          [LIMIT <number>] [TERMINATOR V{0-n}]
  961.  
  962.         Stores all data received from the communications connection
  963.         into the specified variable (maximum of 80 characters).
  964.         Capture terminates when a carriage return is received,
  965.         unless the optional string of terminating characters is
  966.         specified or the LIMIT is reached.    TERMINATOR stores the
  967.         terminating character, if any.  You can include a timeout.
  968.  
  969.         See VARIABLE.
  970.  
  971. ^E
  972. ^B RECEIVE
  973. ^B R
  974.  
  975.        RECEIVE <string> [FROM <string>[*]] [ASCII | BINARY | IMAGE]
  976.            [APPEND | DELETE]
  977.  
  978.         Receives a file from the host using error-checking protocol.
  979.         If the ASCII | BINARY | IMAGE parameter is omitted, then the last
  980.         associated value is used.  The filenames may be string
  981.         expressions.  You may also use R.
  982.  
  983. [*] SWITCHES   [/D]   Allows transfer of DECdx format files (IMAGE).
  984.            [/I]   Identical to IMAGE as transfer method (BINARY).
  985.            [/W]   Allows sending and receiving WordPerfect document files
  986.               (BINARY).
  987.  
  988.         Files being sent to the host with these switches must first
  989.         be received with these parameters.
  990.  
  991. ^E
  992. ^B RENAME
  993. ^B REN
  994.  
  995.     RENAME [<d:>][<path1>]<filespec1> [<path2>]<filespec2>
  996.  
  997.         Renames a file, optionally, changing the path name.  (An
  998.         enhanced version of the standard DOS command.) You may also
  999.         use REN.
  1000.  
  1001. ^E
  1002. ^B RESETCOMM
  1003.  
  1004.     RESETCOMM
  1005.  
  1006.         Depending on your datacomm-port choice and your environment,
  1007.         RESETCOMM resets a Hayes Smartmodem 1200B (an internal modem) to
  1008.         its power-on state, suspends the current LAN session, or negotiates
  1009.         for an MNP connection.
  1010.  
  1011.         You may also use the keystroke Ctrl-F5.
  1012.  
  1013. ^E
  1014. ^B RESTORE
  1015.  
  1016.     RESTORE [<hostfile>] [<d:>][<path>]<filename>
  1017.         [/S] [/K] [/H] [/L:<filespec>]
  1018.  
  1019.         Restores PC files contained in a host backup file.
  1020.         NOTE: This option is only available with PLUS versions of
  1021.           Reflection.
  1022.  
  1023.     PARAMETER    DESCRIPTION
  1024.     [<hostfile>]    Filename on the host computer.    Default name is BACKUP.
  1025.     [<d:>]        Drive location of files to be restored.
  1026.     [<path>]    Directory or subdirectory path to be restored.
  1027.     <filename>    Filename to be restored.  Wildcards are acceptable.
  1028.     [/S]        Restore all subdirectories of specified path.
  1029.     [/K]        Keep files modified since the backup (do not restore).
  1030.     [/H]        Overwrite existing hidden, system, or read-only files.
  1031.     [/L:<filespec>] Restore report filename.  Default name is RESTORE.LOG.
  1032.  
  1033. ^E
  1034. ^B RETURN
  1035.  
  1036.     RETURN
  1037.  
  1038.         Exits an invoked file, returning to caller.  If RETURN is
  1039.         encountered after the labelname used with GOSUB, processing
  1040.         returns to the line which immediately follows the GOSUB
  1041.         command.
  1042.  
  1043. ^E
  1044. ^B ROW
  1045.  
  1046.     ROW
  1047.  
  1048.         The ROW function returns the number of the current row in
  1049.         display memory.
  1050.  
  1051. ^E
  1052. ^B SAVE
  1053.  
  1054.     SAVE [<filespec> [DELETE]]
  1055.  
  1056.         Saves a configuration to a disk file.
  1057.  
  1058. ^E
  1059. ^B SCOLUMN
  1060.  
  1061.     SCOLUMN
  1062.  
  1063.         The SCOLUMN function returns the number of the current column
  1064.         in Reflection's screen.
  1065.  
  1066. ^E
  1067. ^B SEND
  1068. ^B S
  1069.  
  1070.       SEND <string> [TO <string>[*]] [ASCII | BINARY | IMAGE]
  1071.         [REC=<num>] [DELETE]
  1072.  
  1073. [*] SWITCHES   [/C]   Submitted as batch DCL file after transfer (ASCII).
  1074.            [/D]   Allows transfer of DECdx format files (IMAGE).
  1075.            [/F]   VAX file created with fixed-length records (BINARY).
  1076.            [/I]   Identical to IMAGE as transfer method (BINARY).
  1077.            [/S]   File submitted to spooler on VAX after transfer (ASCII).
  1078.            [/W]   Allows sending and receiving WordPerfect document files
  1079.               (BINARY).
  1080.  
  1081.     Sends a file to the host using error-checking protocol.  If the ASCII |
  1082.     BINARY parameter is omitted, then the last associated value is used;
  1083.     similarly with REC=<num>.  The filenames may be string expressions, and
  1084.     you may specify multiple switches following the hostfile name.  You may
  1085.     also use S.
  1086. ^E
  1087. ^B SET
  1088.  
  1089.     SET <parameter-name> <parameter-value>
  1090.  
  1091.         The SET commands allow you to control various configuration
  1092.         parameters.  Type HELP SET1, HELP SET2, and HELP SET3 for
  1093.         further information on specific SET commands.
  1094.  
  1095.              HELP SET1      --->      A to HOST-STARTUP
  1096.              HELP SET2      --->      HOT-KEY to PRINTER-FLOW-CONTROL
  1097.              HELP SET3      --->      PRINTER-INTERFACE to Z
  1098.  
  1099. ^E
  1100. ^B SET1
  1101.  
  1102.             SET <parameter-name> <parameter-value>
  1103.  
  1104. parameter name         parameter value    parameter name        parameter value
  1105.  
  1106. ALERT             YES|NO        DATACOMM-PORT        <com choice>
  1107. BAUD             110 - 115200    DELETE-TRAILING-SPACES    YES|NO
  1108. BELL-ENABLED         YES|NO        DISABLE-COMP-CODES    YES|NO
  1109. BLOCK-SIZE         64 - 512        DISABLE-INTERRUPT    YES|NO
  1110. BREAK-LENGTH         0 - 9999        DISABLE-MESSAGES    YES|NO
  1111. CAPTURE          YES|NO        DISABLE-TRANSLATION    YES|NO
  1112. CHARACTER-DELAY      0 - 255        DISCONNECT-ON-EXIT    YES|NO
  1113. CHECK-PARITY         YES|NO        DSR-REQUIRED        YES|NO
  1114. CONNECTION         DIRECT|MODEM    EGA-CHARACTER-SETS    MCS|DRCS|
  1115. CONTINUE-REPORT      YES|NO                    DECTEC|ALL
  1116. CR/LF=SEPARATOR      YES|NO        ENQ-ACK         YES|NO
  1117. CTRL-Z=EOF         YES|NO        EXITS-DISABLED        YES|NO
  1118. CTS-REQUIRED         YES|NO        GLOBAL-CAPS-SCROLL    YES|NO
  1119. DATA-BITS-PARITY     8/NONE|7/SPACE    GLOBAL-NUM-LOCK     YES|NO
  1120.              7/MARK|7/EVEN    HOST-INITIATED-COMMANDS YES|NO
  1121.              7/ODD|7/NONE    HOST-PROMPT        <character>
  1122.              8/EVEN|8/ODD    HOST-STARTUP        <string>
  1123. ^E
  1124. ^B SET2
  1125.  
  1126.             SET <parameter-name> <parameter-value>
  1127.  
  1128. parameter name        parameter value   parameter name       parameter value
  1129.  
  1130. HOT-KEY         <hot-key value>   PPL-EXTRA-CHARS      <char,char,...>
  1131. KERMIT-CHECKSUM     1-byte|2-byte|CRC PPL-FRAME-SIZE       20 - 256
  1132. KERMIT-RECEIVE-START    <quoted char>      PPL-HOST-SERVER      <string>
  1133. KERMIT-SEND-START    <quoted char>      PPL-START-CHAR       <character>
  1134. LINE-DELAY        0 - 255       PPL-TERMINATOR       <character>
  1135. LINE-WIDTH-COMPRESSED    40 - 9999      PPL-WINDOW-SIZE      HP=1,VAX=1-7
  1136. LINE-WIDTH-EXPANDED    40 - 9999      PPL-XFER-METHOD      "A"|"B"|"C"
  1137. LINE-WIDTH-NORMAL    40 - 9999      PRINTER-BAUD           110 - 115200
  1138. LITERAL-ESCAPE        <character>      PRINTER-CONTROL      IBM|EPSN, etc.
  1139. MAX-XOFF-TIME        0 - 999       PRINTER-DATA-        8/NONE|7/SPACE
  1140. MCS-TO-NRC        YES|NO             BITS-PARITY       7/MARK|7/EVEN
  1141. NEW-PAGE-ON-CLS     YES|NO                       7/ODD|7/NONE
  1142. NRC-TO-MCS        YES|NO                       8/EVEN|8/ODD
  1143. POPUP-ONLY        YES|NO          PRINTER-FILE           <string>
  1144. PPL-ACTIVITY-TIMER    <# of sec.>      PRINTER-FLOW-CONTROL XON/XOFF|ETX/ACK
  1145. PPL-END-CHAR        <character>                   DSR | CTS | NONE
  1146.  
  1147. ^E
  1148. ^B SET3
  1149.  
  1150.             SET <parameter-name> <parameter-value>
  1151.  
  1152. parameter name           parameter value       parameter name      parameter value
  1153.  
  1154. PRINTER-INTERFACE      PARALLEL|-2|-3|-4   SPACES-TO-TABS      YES|NO
  1155.                SERIAL-1 thru -8    STOPBITS           1 - 2
  1156.                DRIVER|FILE|NONE    STRIP-NULLS-DELS    YES|NO
  1157. PRINTEER-PASSTHRU-CONV YES|NO           STRIP-TEXT           YES|NO
  1158. PRINTER-STOPBITS       1 | 2           SUB-BLOCK-LENGTH    0  - 256
  1159. QUIET-COMMAND           YES|NO           SUSPEND-DATACOMM    YES|NO
  1160. QUIET-DISPLAY           YES|NO           TABS-TO-SPACES      YES|NO
  1161. QUIET-STATUS           YES|NO           TERMINAL-TYPE       <type>
  1162. RECEIVE-PACING           NONE|XON/XOFF|       TRACE           YES|NO
  1163.                HARDWARE        TRANSMIT-PACING     NONE|XON/XOFF|
  1164. RECEIVE-TIMEOUT        0 - 9999                    HARDWARE
  1165. REMOTE-MODE           YES|NO           VARIABLES           10 - 800
  1166. RETRY-LIMIT           0 - 9999        VIDEO-BUFFER        DEFAULT/8-64K
  1167. SEPARATOR=CR/LF        YES|NO           WRITE-CTRLZ           YES|NO
  1168. SESSION#           0 - 255           XMODEM-CRC           YES|NO
  1169. SHELL-MEMORY           <number>        XOFF-ON-MODE-SWITCH YES|NO
  1170.                        XOFF-REPEAT           0 - 9999
  1171.  
  1172. ^E
  1173. ^B SHELL
  1174.  
  1175.     SHELL [<DOS command name> [<parameters>]]
  1176.  
  1177.         Invokes the command interpreter.  If the optional DOS command
  1178.         is included, then the interpreter is terminated following
  1179.         execution.    You MUST reserve enough memory to run DOS or
  1180.         another program.
  1181.  
  1182. ^E
  1183. ^B SROW
  1184.  
  1185.     SROW
  1186.  
  1187.         The SROW function returns the number of the current row in
  1188.         Reflection's screen.
  1189.  
  1190. ^E
  1191. ^B STOP
  1192.  
  1193.     STOP
  1194.  
  1195.         Terminates execution of a command file and returns to terminal
  1196.         mode.
  1197.  
  1198. ^E
  1199. ^B SWITCHES
  1200.  
  1201.         You can add a switch when loading Reflection which sets a
  1202.         particular parameter. This must be added before indicating a
  1203.         configuration filename and/or a command file.
  1204.  
  1205.         To find out which switches are available, type the following
  1206.         at the DOS prompt:     R2 ?
  1207.  
  1208. ^E
  1209. ^B SYNTAX
  1210.  
  1211.     Syntax
  1212.  
  1213.         The following symbols indicate syntax and are not actually
  1214.         typed:
  1215.  
  1216.         < >     encloses description of information to be typed
  1217.          |        separates parameter choices
  1218.         { }     encloses set of required choices
  1219.         [ ]     encloses set of optional choices
  1220.         <time>  hh:mm:ss:cc  hh=hours, mm=minutes, ss=seconds,
  1221.             cc= hundreths of seconds. A 24 hour clock is used.
  1222.  
  1223. ^E
  1224. ^B TEXT
  1225. ^B STRING
  1226.  
  1227.         In syntax descriptions, the primitives <text> and <string>
  1228.         refer to either a quoted string, a command variable, or
  1229.         combinations of same together with string functions.
  1230.  
  1231.         Example:  "Hello" & UPPER(V1) & MID(V2,1,3)
  1232.  
  1233.         NOTE:  The parentheses are required in this command.
  1234.  
  1235. ^E
  1236. ^B TRANSMIT
  1237.  
  1238.     TRANSMIT {<string> | <filespec> [PROMPT [<string>] | PAUSE [<tenths>]]}
  1239.  
  1240.         Transmits data to the host computer.  Pacing can be used, but
  1241.         there is no error-checking.
  1242.  
  1243. ^E
  1244. ^B TSR
  1245.  
  1246.     TSR
  1247.  
  1248.     The TSR function tests whether Reflection is installed as a terminate
  1249.     and stay resident program (pop-up).  The TSR function is true if
  1250.     Reflection has been installed in memory.
  1251.  
  1252. ^E
  1253. ^B TYPE
  1254. ^B T
  1255.  
  1256.     TYPE <filespec>
  1257.  
  1258.         Displays a file on the terminal.  You may also use T.
  1259.  
  1260. ^E
  1261. ^B UPPER
  1262.  
  1263.     UPPER(<string>)
  1264.  
  1265.         String function which produces a string with all lower case
  1266.         letters changed to upper case.
  1267.  
  1268.         NOTE:  The parentheses are required in this command.
  1269.  
  1270. ^E
  1271. ^B VALUE
  1272.  
  1273.     VALUE (<SET parameter>)
  1274.  
  1275.         Text string function which returns a string indicating the
  1276.         value of the SET parameter specified.
  1277.  
  1278.         Example:  DISPLAY VALUE (TRANSMIT-PACING)
  1279.  
  1280.         The value returned is the current TRANSMIT-PACING setting.
  1281.  
  1282.         NOTE:  The parentheses are required in this command.
  1283.  
  1284. ^E
  1285. ^B VARIABLE
  1286.  
  1287.     A variable is any of the character combinations V0, V1 ...  Vn,
  1288.     where n is one less than the value configured with the SET VARIABLES
  1289.     command.  The default is SET VARIABLES 10, so that V0 through V9 may
  1290.     be used; the maximum value of n is 799.  A variable may have as a
  1291.     value a string expression of up to 80 characters or an integer of up
  1292.     to 32766.
  1293.  
  1294.     V0 to V9 can also be referenced by the combinations $0, $1 ...    $9,
  1295.     in which case the value is inserted in the command text prior to any
  1296.     command interpretation.  Note that an additional $ is required for
  1297.     use with the filespec variable in the FOR command.
  1298.  
  1299.     Variables may be passed from one Reflection command file to another
  1300.     using the following syntax:
  1301.  
  1302.     <command filename> [parameter1] [parameter2] [parameter3] ...
  1303.  
  1304.     The optional parameters are passed to the command file as V1, V2,
  1305.     V3, ....  V0 contains a list of all passed parameters.    Also see the
  1306.     INVOKE command.
  1307.  
  1308. ^E
  1309. ^B VAXLINK
  1310.  
  1311.     Vaxlink
  1312.  
  1313.     VAXLINK can  be installed as a foreign command by adding the
  1314.     following to your LOGIN.COM
  1315.  
  1316.          $VAXLINK :== $[dev][directory]VAXLINK.EXE
  1317.  
  1318.         If VAXLINK is installed as a foreign command, omit the
  1319.         word RUN from the host default startup sequence.  The
  1320.         following parameters may then be added to the sequence:
  1321.  
  1322.          VAXLINK [e] [t <seconds>] [n <integer>] [r] [o]
  1323.          e         Specifies 8-bit file transfer.
  1324.          t<n>    Sets the number of seconds that will elapse between no
  1325.              response from the PC and a timeout.
  1326.          n<n>    Sets the retry limit to <n> consecutive times.
  1327.          r         Puts file transfer into readsync mode. This setting
  1328.              should be used if file transfers fail with a DATA
  1329.              OVERRUN error.
  1330.          o         Allows you to perform file transfers to and from PCs using
  1331.              PC 2622 emulation software.
  1332.  
  1333. ^E
  1334. ^B VERIFY
  1335. ^B V
  1336.  
  1337.     VERIFY [COMMANDS | <SET parameter>]
  1338.  
  1339.         Displays the current values of all the parameters that can be
  1340.         set using the SET command.    You may also use V.  If you specify
  1341.         a particular SET parameter after the VERIFY command, the value
  1342.         for that parameter is listed.
  1343.  
  1344.         Example:    VERIFY BAUD
  1345.  
  1346.         The current baud rate setting is displayed.
  1347.  
  1348.         The COMMANDS option gives you the ability to create a command
  1349.         file that will SET all or various configurable items.
  1350.         Typing V COMMANDS from the command line displays all current
  1351.         values in the format:  SET <parameter> <value>
  1352.  
  1353. ^E
  1354. ^B WAIT
  1355.  
  1356.     WAIT {[[UNTIL] <time>] [FOR {<string> | <time> SILENCE}]}
  1357.  
  1358.         Wait for specified incoming data and/or timing specifications.
  1359.         Sets the condition name FOUND.
  1360.  
  1361. ^E
  1362. ^B WRITE
  1363.  
  1364.     WRITE <file number> <string>
  1365.  
  1366.         Writes a line into an opened file from a variable.    There is
  1367.         no data editing.
  1368.  
  1369.         See VARIABLE.
  1370.  
  1371. ^E
  1372. ^B XRECEIVE
  1373. ^B XR
  1374.  
  1375.     XRECEIVE <string> [APPEND | DELETE]
  1376.  
  1377.         Receives a file from the host using XMODEM protocol.  The
  1378.         filename may be a string expression.  You may also use XR.
  1379.  
  1380. ^E
  1381. ^B XSEND
  1382. ^B XS
  1383.  
  1384.     XSEND <string>
  1385.  
  1386.         Sends a file to the host using XMODEM protocol.  The filename
  1387.         may be a string expression.  You may also use XS.
  1388.  
  1389. ^E
  1390.