home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / utility / misc / master / master.hlp < prev    next >
Text File  |  1992-01-26  |  25KB  |  728 lines

  1.  ALIAS            --- give a new name to an old (set of) command(s)
  2.              Form : ALIAS [<name> [<command>]]
  3.          Examples : ALIAS rm RM -I
  4.                     ALIAS time Time \; DATE        or better
  5.             ALIAS time 'Time ; DATE'
  6.                     ALIAS ed c:\util\edit.ttp $*
  7.             ALIAS ed
  8.             ALIAS exec cls \; $* \; cls        or better
  9.             ALIAS exec 'cls ; $* ; cls'
  10.             ALIAS @ Setenv \;:
  11.             ALIAS
  12.  
  13.  ASK and GET       --- read from the keyboard
  14.              Form : ASK ["<string>"] <variable>
  15.                     GET ["<string>"] <variable>
  16.          Examples : ASK ANSWER
  17.                     ASK "COPY NOW ? : " EINGABE
  18.                     GET "Your choice : " choice
  19.  
  20.  BEEP              --- ring the bell
  21.              Form : BEEP [<n>]
  22.           Options : <n> : ring <n> times
  23.          Examples : BEEP
  24.                     BEEP -3
  25.  
  26.  BYE or EXIT     --- leave Master and go back to the calling program
  27.            Form : (EXIT | BYE)
  28.  
  29.  CAR               --- show start of variable
  30.              Form : CAR <variable>
  31.       Options :   C : use chars (not words)
  32.             <n> : show first <n> words (or chars)
  33.               O : show <n>'th word only
  34.               G : lookup global binding
  35.  
  36.  CAT or TYPE     --- show file contents
  37.            Form : (CAT | TYPE) {<filespec>}
  38.         Options : L : line numbers
  39.           N : show filenames
  40.           M : act like more
  41.           P : act like page
  42.           I : display 32000 bytes as image
  43.           C : display as text (even binaries)
  44.         Default : normal output of the specified files
  45.  
  46.        Examples : CAT MASTER.SET
  47.                   CAT *.C -NL
  48.                   CAT *.C *.DOC
  49.           CAT *.pic -im
  50.  
  51.  
  52.  CD              --- change directory or show current directory
  53.            Form : CD [<pfad>]
  54.         Options : N : don't show toplevel dir as \
  55.           S : execute sign_on.bat
  56.        Examples : CD
  57.                   CD \
  58.                   CD E:\TMP
  59.                   CD C_FILES\
  60.                   CD C_FILES         (identical to the previous)
  61.  
  62.  CDR               --- show rest of variable
  63.              Form : CDR <variable>
  64.       Options :   C : use characters
  65.             <n> : strip <n> words (0 shows entire variable)
  66.               G : use global var binding
  67.  
  68.  CHMOD           --- change file attributes
  69.            Form : CHMOD <mode> [<filespec> ... ]
  70.           mode :
  71.                   0 : readable and writable
  72.                   1 : read-only           (r/o)
  73.                   2 : hidden file      (hid)
  74.                   4 : system file         (sys)
  75.                   8 : diskname            (vol)
  76.                  10 : directory           (DIR)
  77.                  20 : written and closed  (w/c)
  78.  
  79.        Examples : CHMOD 1 *.C          write-protect all C-files
  80.                   CHMOD 3 TEST.PRG     write-protect and hide TEST.PRG
  81.                   CHMOD 22 YY          absolute nonsense (but possible)
  82.  
  83.  CHRONO          --- set or clear the internal stop-watch
  84.            Form : CHRONO [<timestring>]
  85.  
  86.  CLOSE             --- close open streams
  87.          Form : CLOSE <stream> {<stream>}
  88.           Options : O : do not complain about non-open files
  89.          Examples : CLOSE mainfile infile
  90.          See Also : OPEN, GETLINE
  91.  
  92.  CLS             --- Clear Screen
  93.            Form : CLS
  94.  
  95.  COMP              --- compare two files (bytewise)
  96.              Form : COMP <file1> [<file2>]
  97.       Options : S : silent mode
  98.          Examples : COMP TEST.C TEST.BAK
  99.                     COMP B:\*.PAS -P
  100.                     COMP MENU.BAT E:
  101.          See Also : DIFF
  102.  
  103.  CP or COPY      --- copying of files
  104.            Form : (COPY | CP) <source> {<source>} [<dest>]
  105.         Options : O : overwrite existing files
  106.           N : never overwrite
  107.           D : overwrite older files
  108.           T : preserve time and date
  109.           I : ask user for confirmation
  110.           V : overwrite newer files
  111.           Y : show action, but don't copy
  112.           F : do not test free space on destination drive
  113.           A : append files
  114.           C : eventually create target directory
  115.          <n>: use <n> bytes buffer (0 means just copy filename)
  116.           K : interpret <n> as kilobytes
  117.         Default : asking
  118.        Examples : CP A: B:
  119.                   COPY MASTER.PRG B:MASTER\
  120.                   CP *.C -O
  121.                   CP A:\MASTER -N
  122.  
  123.  DATE            --- read or set the internal calendar
  124.     Options : S : display short format
  125.            Form : DATE [<datestring> [<timestring>]]
  126.        Examples : DATE 20.9.86
  127.  
  128.  DIFF              --- search for differences in 2 textfiles
  129.              Form : DIFF <file1> [<file2>]
  130.          Examples : DIFF T.PAS T.BAK
  131.                     DIFF E:PAS\
  132.                     DIFF WORK.FOR B:
  133.          See Also : COMP
  134.  
  135.  DIR or LS and LL --- display contents of directory
  136.            Form : (DIR | LS | LL) {<filespec>}
  137.         Options : D : directories
  138.           H : hidden files
  139.           S : system files
  140.           N : normal files
  141.           A : all files
  142.           V : only volume labels
  143.           U : unix-like display (directories with /, links with @)
  144.           I : inverse output
  145.           R : recursive listing
  146.           P : only filenames
  147.           E : only erased files
  148.                F, L : long format
  149.         Default : normal files
  150.  
  151.                   LL does the same as LS -F
  152.  
  153.        Examples : LS
  154.                   LS B: -A
  155.                   LS *.PRG -F
  156.                   LL MASTER.* B:\ *.C
  157.                   LS -R
  158.  
  159.  DIRS and POPD and PUSHD  --- manipulation of the directorystack
  160.          Form : PUSHD {<dirname>}
  161.             POPD
  162.             DIRS
  163.       Options :   S : execute sign_on.bat
  164.             <n> : get <n>'th entry
  165.          Examples : PUSHD A:\MASTER    we go to A:\MASTER
  166.             PUSHD A:\BATCH    we go to A:\BATCH
  167.             PUSHD        we go back to A:\MASTER
  168.             POPD        and again to A:\BATCH
  169.             DIRS        on the stack is the old directory
  170.             POPD -3        get the third entry
  171.  
  172.  DUMP             --- show files as HEX/ASCII-dump
  173.             Form : DUMP {<filespec>}
  174.          Options : N : show filenames
  175.            D : show data section
  176.          <n> : start at offset <n>
  177.         Examples : DUMP *.PRG -N
  178.                    DUMP EDIT.PRG EDIT.RSC -D
  179.            DUMP -1024 A.PRG
  180.  
  181.  
  182.  ELAPSED         --- show elapsed time
  183.         Options : L : show running time of last command
  184.            Form : ELAPSED
  185.  
  186.  ERR               --- show error-code of previous command or set it
  187.              Form : ERR [<n>]
  188.  
  189.  EVAL            --- evaluate a mathematical expression (reverse
  190.              polish notation)
  191.            Form : EVAL <rpn-expr>
  192.        Examples : EVAL 5 6 -
  193.                   EVAL count 1 +
  194.                   EVAL 45 5 6 + * 4 -
  195.  
  196.  EXPORT            --- export variable to the next global level
  197.          Form : EXPORT {<var>}
  198.          Examples : EXPORT var1 var2
  199.             EXPORT
  200.          See Also : SET, SETENV, UNSET, UNSETENV
  201.  
  202.  FILES           --- display files and put in environment var
  203.            Form : FILES [<file>..]
  204.         Options : P : display with absolute path
  205.           K : preserve non-existing files in output
  206.           D : show directories
  207.         <n> : use a maximum of <n> bytes for output
  208.           A : show all files
  209.           R : display with relative path
  210.         Default : -128
  211.        Examples : FILES
  212.                   FILES -98 B:*.C
  213.                   FILES A:\TMP\  ..\*.PAS
  214.           FILES -K NEU.PAS ALT.[CH]
  215.        See Also : LS, DIR, LL, STATUS
  216.  
  217.  FIND or FGREP     --- Search a string in textfiles
  218.              Form : (FIND | FGREP) <searchstring> {<filedesc>}
  219.           Options : L : line numbers
  220.             I : ignore case
  221.             V : show non-matching lines
  222.          Examples : FIND "()" *.C
  223.                     FGREP "  BEGIN" *.PAS *.BAK -IL
  224.                     FIND "(""%" *.C -V
  225.  
  226.  FORMAT           --- format a floppy-disk
  227.             Form : FORMAT drive [<volumelabel>] [<starttrack>
  228.                     [<endtrack> [<sectors/track>]]]
  229.          Options : S : use single-sided format
  230.            O : do not ask for confirmation if disk is formatted
  231.            N : do not touch bootsector
  232.         Examples : FORMAT A
  233.                    FORMAT B TESTDISK 81 81 10 -S-N
  234.                    FORMAT A 0 81 10 -O
  235.  
  236.  FREE            --- give back SHRINK'ed memory
  237.            Form : FREE
  238.  
  239.  GETLINE           --- read a line from an open stream
  240.          Form : GETLINE <var> [<stream>]
  241.          Examples : GETLINE inline infile
  242.             GETLINE inline     ! read from the last accessed file
  243.          See Also : OPEN, CLOSE
  244.  
  245.  GOTO              --- go to a label in a batchfile
  246.              Form : GOTO <label>
  247.          Examples : GOTO START:
  248.                     GOTO COMPILE
  249.                     GOTO L1
  250.  
  251.  GREP              --- search for a regular expression in files
  252.              Form : GREP <pattern> {<file>}
  253.           Options : L, N : show line-numbers
  254.                V : print non-matching lines
  255.                I : ignore case
  256.                C : only count matches
  257.                P : print file names that contain matches
  258.                    the following chars form a regular expression
  259.  
  260.                    '^'  - start of line
  261.                    '$'  - end of line
  262.                    '.'  - any character except newline
  263.                    ':a' - any alphabetic character
  264.                    ':n' - any alphanumeric char (a-z,0-9)
  265.                    ':d' - any digit
  266.                    ': ' - blank, tab or other control-characters
  267.                    ':<' - start of word
  268.                    ':>' - end of word
  269.                    '+'  - repeat previous expression one or more times
  270.                    '*'  - repeat previous expression zero or more times
  271.                    '-'  - previous expression can be ommited
  272.                    '[]' - any char of the specified set ('^' immediately after
  273.               '[' negates and ranges can be specified with '-')
  274.                    '\'  - mask the next character (example: '\$' means '$')
  275.                     x   - any other char must match against the input exactly
  276.  
  277.          Examples : GREP "^#define: *.*:d+$" *.c
  278.                      searches C-defines for a number
  279.                     GREP ".*(.*var.*)" *.PAS
  280.             GREP -P printf *.C ==> xx ; EDIT $xx
  281.  
  282.  HELP            --- give some help
  283.            Form : HELP [[<topic>] [<helpfile>]]
  284.        Examples : HELP RS232
  285.                   HELP
  286.           HELP COMPILER A:\PASCAL\PASCAL.HLP
  287.           HELP PETER C:\HELPFILES\BIRTHDAY.HLP
  288.  
  289.  HISTORY          --- manipulate history
  290.             Form : HISTORY [<n>]
  291.      Options : T : display history as text
  292.            P : show protection state of entries
  293.            W : set minimal width of commands accepted
  294.         Examples : HISTORY
  295.            HISTORY -W 2
  296.                    HISTORY 40             ;: set length of history
  297.            HISTORY -t >all.bat
  298.  
  299.  INVERSE         --- output is white on a black background
  300.            Form : INVERSE
  301.  
  302.  JOBS              --- display active jobs
  303.          Form : JOBS
  304.       Options : <n> : set maximal number of jobs
  305.       Description : active job (reachable with %%) is marked with +
  306.             jobs may be restarted with %<job-id>
  307.          See Also : KILL
  308.  
  309.  KBD           --- set or show the keyboard defaults
  310.          Form : KBD [{<keyword>}]
  311.            keyword:
  312.             [NO]REPEAT
  313.             [NO]KEYCLICK
  314.             [NO]BELL
  315.             [NO]MOUSE
  316.          Examples : KBD MOUSE    ;: mouse-movements simulate cursor-keys
  317.             KBD NOREPEAT    ;: no autorepeat
  318.  
  319.  KEY              --- set function key strings
  320.             Form : KEY [([+]F<n>|M(L|R)) [<string>[@]]]
  321.         Examples : KEY F1 COMP TEST.C
  322.                    KEY MR EDIT TEST.C    ;: right mouse-button
  323.                    KEY +F3
  324.  
  325.         See Also : SAVE, RESTORE
  326.  
  327.  KILL              --- terminate stopped programs
  328.          Form : KILL %<job-id>
  329.          See Also : JOBS
  330.      
  331.  L25 and L50       --- set the number of lines on the (mono) screen
  332.              Form : (L25|L50)
  333.  
  334.  LN              --- installation of symbolic links
  335.            Form : LN [<copy> [<original>]]
  336.        Examples : LN C:\AUTO\MASTER.PRG D:\TOOLS\TOS\MASTER.PRG
  337.                   LN HARDDISK E:\
  338.           LN \USR\INCLUDE\ D:\LANGUAGE\C\INCLUDE\
  339.           LN @:\TEMP @:\TMP
  340.           LN @:\PROG.RSC C:\RESOURCE\PROG.RSC
  341.           LN HARDDISK
  342.           LN
  343.  
  344.  LOCK              --- write-protect a logical drive
  345.              Form : LOCK {<drive>}
  346.       Options : H : hard-lock (remove from drive list)
  347.  
  348.  MD or MKDIR     --- create a new directory
  349.            Form : (MD | MKDIR) <dirname> {<dirname>}
  350.        Examples : MD C_FILES
  351.                   MKDIR TEST DOCUMENT COMPILER
  352.                   MD C_FILES\TEXTE
  353.  
  354.  MEMDUMP           --- Hex- and ASCII-Dump of the main memory
  355.              Form : MEMDUMP [<start> [<end>]]
  356.          Examples : MEMDUMP
  357.                     MEMDUMP 70234
  358.                     MEMDUMP 4425 4475
  359.  
  360.  MENU           --- display and execute popup-menus
  361.          Form : MENU [<menuspec>]
  362.        Syntax : <menuspec> == '['['#'<rows>] [<item>] {'|' <item>} ']'
  363.             <item> == %<val>[<menuspec>]<string>
  364.       Options : none
  365.       Default : show the last menu defined
  366.       Description : A PopUp-Menu is displayed. <menuspec> has the following
  367.             form:
  368.               [ : start a new (sub-)menu
  369.               ] : finish menu
  370.               | : seperates menu-entries
  371.              #n : change maximal number of rows (default 5) to n
  372.              %n : change return-value (Default: rank of the entry) to n
  373.             The selected entry is returned in the ERR-variable when an
  374.             entry is selected with a mouse-click. Submenus have to be
  375.             specified first. '#' has a special meaning only immediately
  376.             after '[' and '%' only after '[' or '|' (or the '#'-spec).
  377.          Examples : MENU [#2%4[#1 Eins | Zwei | Drei] Vier |%5 Fuenf ]
  378.             MENU
  379.             SETENV DELIMITER  | ; FILES -K; MENU [ $FILES ] ;
  380.              SET value $? ;
  381.              EVAL value 2 * 1 - ->value;
  382.              CAR -${value}o FILES -> f ;
  383.              MORE $f        (show selected file)
  384.  
  385.  MODULE         --- start a memory-resident Master-extension
  386.        Form : MODULE [<filename>]
  387.        Examples : MODULE popup    (installs the MENU-function)
  388.  
  389.  MORE and PAGE    --- show files in seperate pages
  390.             Form : (PAGE | MORE) {<filespec>}
  391.          Options : N : show filenames before file
  392.            L : line numbers
  393.            I : display image file
  394.         Examples : MORE *.C
  395.                    PAGE MASTER.HLP TEST.DOC
  396.  
  397.  MV or MOVE      --- copy files (source is renamed or deleted after copy)
  398.            Form : (MOVE | MV) <source> {<source>} [<dest>]
  399.         Options : O : overwrite existing files
  400.           N : never overwrite files
  401.           D : overwrite older files
  402.           T : preserve time and date
  403.           Y : show action, but do not move
  404.           V : overwrite newer files
  405.           I : ask for confirmation
  406.           F : do not examine free space on target drive
  407.           C : create missing target directory
  408.  
  409.  NORMAL          --- output is black on white background; this is the default
  410.            Form : NORMAL
  411.         Options : K : restore Bios keybindings
  412.  
  413.  ON            --- set handler for error condition
  414.             Form : ON [ERROR] [!] "{command}"
  415.      Description : ! sets global error handler (otherwise local to batch)
  416.            "" disables processing
  417.  OPEN              --- open a file for sequential read or show all open streams
  418.          Form : OPEN [[<stream>] <datei>]
  419.          Examples : OPEN
  420.             OPEN address.txt    ;: streamname equals filename
  421.             OPEN infile address.txt
  422.          See Also : CLOSE, GETLINE
  423.  
  424.  PACK and UNPACK   --- compress files and restore original contents
  425.              Form : (PACK | UNPACK) <source> {<source>} [<dest>]
  426.           Options : O : overwrite existing files
  427.             N : never overwrite files
  428.             D : overwrite older files
  429.             M : remove source after successful (un)packing
  430.             T : preserve time and date stamp
  431.             V : overwrite newer files
  432.             Y : show only action, but do not pack or unpack
  433.             I : ask user before action
  434.             C : create missing target directory
  435.          Examples : PACK T.C T.PAK
  436.                     PACK *.PAS A:\PACK\
  437.  
  438.  PAUSE             --- pause a batchjob
  439.              Form : PAUSE
  440.  
  441.  PRINTF         --- formatted output
  442.            Form : PRINTF [formatstring {argument}]
  443.        Examples : PRINTF "%-30s : %lx\n" text num
  444.  
  445.  PWD               --- show default-directories on all drives
  446.              Form : PWD
  447.  
  448.  QUIT              --- leave one or more batchfiles and set error code
  449.              Form : QUIT [<ret>]
  450.       Options : <n> : leave <n> files
  451.  
  452.  RD or RMDIR     --- removing of directories
  453.            Form : (RD | RMDIR) <dirname> {<dirname>}
  454.        Examples : RD C_FILES
  455.                   RD COMPILER TEXTE
  456.  
  457.  REM               --- display text at the console
  458.              Form : REM [<string>]
  459.  
  460.  REN or RENAME   --- renaming of files
  461.            Form : (REN | RENAME) <exactfile1> <exactfile2>
  462.        See Also : MOVE, MV
  463.  
  464.  RESTORE          --- restore saved state
  465.             Form : RESTORE [<file>]
  466.          Options : M : merge saved state
  467.            N : do not overwrite existing definitions if merging
  468.            G : restore global set vars
  469.      Default : A:\MASTER\MASTER.SET
  470.  
  471.  REWIND            --- reset the parameterlist at the starting point
  472.              Form : REWIND
  473.  
  474.  RM or DELETE or ERA or ERASE or DEL --- remove files
  475.            Form : (DEL | DELETE | ERA | ERASE | RM) {<filespec>}
  476.         Options : I : ask for confirmation
  477.           O : never ask
  478.           Y : show action, but don't remove files
  479.        Examples : RM B:\C_FILES\
  480.                   RM *.BAK *.HLP
  481.                   DEL -O
  482.                   ERA *.* -I
  483.  
  484.  RS232             --- show or set parameters of serial line
  485.              Form : RS232 {<parameter> <value>}
  486.  
  487.                     RS232 BAUD <b> :
  488.                      here <b> can be :
  489.  
  490.                        19200                 600
  491.                         9600                 300
  492.                         4800                 200
  493.                         3600                 150
  494.                         2400                 134
  495.                         2000                 110
  496.                         1800                  75
  497.                         1200                  50
  498.  
  499.           ......................................
  500.                    RS232 PARITY <p>
  501.                      Here <p> can be :
  502.  
  503.                         ODD
  504.                         EVEN
  505.                         NO
  506.  
  507.           ......................................
  508.                    RS232 BITS <b>
  509.                      here <b> can be :
  510.  
  511.                         5, 6, 7 or 8
  512.  
  513.           ......................................
  514.                    RS232 FRAME <f>
  515.                      here <f> can be :
  516.  
  517.                         0               - synchronous mode
  518.                         1, 1.5  or 2    - asynchronous mode
  519.  
  520.           ......................................
  521.                    RS232 FLOW <f>
  522.                      here <f> can be :
  523.  
  524.                         XON/XOFF          - software - handshake
  525.                         RTS/CTS           - hardware - handshake
  526.                         NO                - no handshake
  527.  
  528.           ......................................
  529.  
  530.  SAVE             --- save function-keys, aliases, links and variables (set and
  531.            setenv)
  532.             Form : SAVE [<file>]
  533.      Options : G : save global set vars (used in batchfiles)
  534.      Default : A:\MASTER\MASTER.SET
  535.  
  536.  SET and SETENV   --- set local and global variables
  537.             Form : SET [<variable> [<value>]]
  538.            SETENV [<variable> [<value>]]
  539.         Examples : SET OPTION -debug -nolist
  540.                    SETENV LINES 20    ! set maximal lines for MORE ...
  541.                    SET
  542.                    SETENV USERRED
  543.                    SET Lines $LINES
  544.            SETENV
  545.            SETENV UNIX 2    ! switch to extended unix-mode
  546.  
  547.  SET?              --- is this (global/local) variable set ?
  548.              Form : SET? variable
  549.       Options : G : ask for global var only
  550.             L : ask for local var only
  551.  
  552.  SHAREWARE     --- Shareware-conditions for MASTER
  553.           Fee : 50,- DM (private persons), 100,- DM (commercial users)
  554.        To pay : on regular use of MASTER
  555.     Addresses : Michael Naumann        Edgar Greuter
  556.             Am Sportplatz 22        Francoisstrasse 21
  557.             D-W-6620 Völklingen        D-W-6600 Saarbrücken
  558.        E-Mail : michael@pingu.saar.sub.org,    edgar@pingu.saar.sub.org
  559.      Handbook : contains full description of all commands, many examples
  560.             and tips, also on the interfaces to any program started
  561.             from MASTER
  562.  
  563.     The MASTER versions later than 6.0 will be distributed as shareware,
  564.     which means, that everybody can test the  whole package of programs,
  565.     give it away to anybody else.  But if you use the shell on a regular
  566.     basis, you have to pay a shareware-fee of 50.- DM (~30 US$).
  567.     Registered users  get an  actual version  of  MASTER with their  own
  568.     serial number and the 120+ pages detailed  handbook.  Please tell us
  569.     the serial  number and version of  this version of the program (both
  570.     will be told upon start  of MASTER on  the  screen). So we can  give
  571.     this registered user a bonus  of 10.- DM  for promoting the  further
  572.     distribution of MASTER.
  573.  
  574.  SHIFT             --- shift parameter list of batchfiles
  575.              Form : SHIFT
  576.       Options : <n> : shift <n> positions
  577.  
  578.  SHOW            --- display free bytes on disk or in memory
  579.            Form : SHOW {<drive>}
  580.         Options : M : free memory
  581.           T : give totals for all drives
  582.           V : verbose output
  583.  
  584.  SHRINK          --- shrink available main memory
  585.            Form : SHRINK
  586.         Options : <n> : allocate <n> bytes more
  587.             K : interpret <n> as kilobytes
  588.        Examples : SHRINK -128K
  589.  
  590.  SLEEP             --- interrupt execution for <n>/10 seconds
  591.              Form : SLEEP <n>
  592.  
  593.  STATUS            --- show status-variables of Master
  594.              Form : STATUS
  595.  
  596.  TIME            --- read or set the internal clock
  597.            Form : TIME [<timestring> [<datestring>]]
  598.     Options : S : display short format
  599.        Examples : TIME 22:09
  600.                   TIME 6:03:20 7.2.87
  601.  
  602.  TOUCH             --- update time and date stamp of files
  603.              Form : TOUCH {<file>}
  604.       Options : C : never create files
  605.             I : ask user
  606.          Examples : TOUCH *.C *.H ED.TTP
  607.             TOUCH -C                       ! *.* or $DEFAULT as Default
  608.             TOUCH -I *.C
  609.  
  610.  UNALIAS           --- remove ALIASes
  611.              Form : UNALIAS {<name>}
  612.       Options : O : do not ask for confirmation
  613.  
  614.  UNLINK          --- remove a LINK from the list of links
  615.            Form : UNLINK {<link>}
  616.         Options : O : don't ask for confirmation
  617.  
  618.  UNLOCK            --- write-enable a logical drive
  619.              Form : UNLOCK {<drive>}
  620.       Options : O : do not ask for confirmation
  621.             H : install in drive list
  622.  
  623.  UNSET and UNSETENV --- remove variables
  624.             Form : UNSET {<variable>}
  625.            UNSETENV {<variable>}
  626.      Options : O : do not ask for confirmation
  627.         Examples : UNSET OPTION
  628.                    UNSET klein
  629.            UNSETENV WRAP
  630.            UNSET
  631.            UNSETENV
  632.  
  633.  VERSION         --- show version numbers of Master and the operating system
  634.            Form : VERSION
  635.  
  636.  WHICH             --- show command associated with name (intern, alias, extern)
  637.              Form : WHICH {<command>}
  638.          Examples : WHICH test make ls foreach
  639.          See Also : ALIAS
  640.  
  641.  
  642.  ZCAT              --- show compressed files
  643.              Form : ZCAT {<filespec>}
  644.      Examples : ZCAT FILE.PAK
  645.             LS *.[CH] | ZCAT LS.PAK  ;: this packs the output
  646.  
  647. --- 
  648. 000000 ALIAS
  649. 000429 ASK GET
  650. 000706 BEEP
  651. 000875 BYE EXIT
  652. 000979 CAR
  653. 001221 CAT TYPE
  654. 001671 CD
  655. 002022 CDR
  656. 002232 CHMOD
  657. 002887 CHRONO
  658. 002989 CLOSE
  659. 003214 CLS
  660. 003274 COMP
  661. 003547 CP COPY
  662. 004264 DATE
  663. 004445 DIFF
  664. 004688 DIR LS LL
  665. 005364 DIRS POPD PUSHD
  666. 005810 DUMP
  667. 006104 ELAPSED
  668. 006230 ERR
  669. 006333 EVAL
  670. 006564 EXPORT
  671. 006762 FILES
  672. 007290 FIND FGREP
  673. 007633 FORMAT
  674. 008042 FREE
  675. 008117 GETLINE
  676. 008351 GOTO
  677. 008536 GREP
  678. 010037 HELP
  679. 010261 HISTORY
  680. 010610 INVERSE
  681. 010699 JOBS
  682. 010950 KBD
  683. 011214 KEY
  684. 011485 KILL
  685. 011595 L25 L50
  686. 011697 LN
  687. 012030 LOCK
  688. 012175 MD MKDIR
  689. 012390 MEMDUMP
  690. 012605 MENU
  691. 013711 MODULE
  692. 013862 MORE PAGE
  693. 014140 MV MOVE
  694. 014610 NORMAL
  695. 014765 ON
  696. 014962 OPEN
  697. 015232 PACK UNPACK
  698. 015821 PAUSE
  699. 015891 PRINTF
  700. 016028 PWD
  701. 016118 QUIT
  702. 016262 RD RMDIR
  703. 016431 REM
  704. 016521 REN RENAME
  705. 016651 RESTORE
  706. 016902 REWIND
  707. 017002 RM DELETE ERA ERASE DEL
  708. 017357 RS232
  709. 018959 SAVE
  710. 019183 SET SETENV
  711. 019597 SET?
  712. 019772 SHAREWARE
  713. 020948 SHIFT
  714. 021076 SHOW
  715. 021269 SHRINK
  716. 021467 SLEEP
  717. 021563 STATUS
  718. 021649 TIME
  719. 021864 TOUCH
  720. 022145 UNALIAS
  721. 022270 UNLINK
  722. 022416 UNLOCK
  723. 022588 UNSET UNSETENV
  724. 022856 VERSION
  725. 022963 WHICH
  726. 023163 ZCAT
  727. 001185
  728.