home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / BDOS / DOSPLS25.ARK / -CCPLUS.MSG < prev    next >
Text File  |  1986-10-07  |  2KB  |  86 lines

  1. Summary of commands in CCP+
  2.  
  3. NOTE: any commands, or the range of du addressing, may be restricted
  4. with an installation time configurable wheel byte and ranges.
  5.  
  6. NOTE: Blanks are generally ignored, except to serve as delimiters.
  7. Thus 'DIR A3:' is the same as 'DIR      A3:   ' or '  DIR  A3:'. The
  8. exception is initial blanks when specifying a transient (on disk)
  9. command, which may corrupt the passed command line.
  10.  
  11. NOTE: Tabs are generally treated as blanks. They are passed unchanged
  12. to applications in command lines.
  13.  
  14.  
  15. login
  16. -----    [d][u]:            login to drive/user
  17.  
  18.   ex:    A3:
  19.     0:
  20.     B:
  21.  
  22.  
  23. dir
  24. ---    DIR [[d][u]:]afn[.ft][ o] [;[[d][u]:]afn[.ft] [o]]....
  25.         where o is either 'O' for only system files
  26.             or      'S' for system files also
  27.  
  28.   ex:    DIR            (of default drive/user)
  29.     DIR a3:            (of drive A, user 3)
  30.     DIR b2:*.com        (all .COM on drive B, user 2)
  31.     DIR a0:*.* o        (all system files on drive A0:)
  32.     DIR b3:;a1:        (of B3: and of A1:)
  33.  
  34.  
  35. era
  36. ---    ERA [[d][u]:]afn[.ft]
  37.  
  38.   ex:    ERA *.*            (asks 'ALL (y/n)')
  39.     ERA b3:junk.typ        (removes B3:JUNK.TYP)
  40.     ERA *.bak        (removes all .BAK, default drv/user)
  41.  
  42.  
  43. type
  44. ----    TYPE [[d][u]:fn[.ft]
  45.  
  46.   ex:    TYPE b3:thing.mac    (types b3:thing.mac on console)
  47.  
  48.  
  49. save
  50. ----    SAVE nn[+] [[d][u]:]fn[.ft]    (nn in decimal)
  51.  
  52.   ex:    SAVE 5 a2:junk.x    (saves 5 pages = 10 records in A2:JUNK.X)
  53.     SAVE 4+ barf        (saves 4+ pages = 9 records in BARF. )
  54.             (The '+' adds one record to the nn specification)
  55.  
  56.  
  57. ren
  58. ---    REN [[d][u]:]newfn[.ntp]=[[d][u]:]oldfn[.typ]
  59.                 (note: the 2 du's should agree)
  60.   ex:    REN a3:thing.com=a3:x.com    (renames old x.com to thing.com)
  61.  
  62.  
  63. caps
  64. ----    CAPS
  65.  
  66.   ex:    CAPS    (inverts the upshift flag, allowing or preventing lower
  67.          case command lines being passed to applications)
  68.  
  69. go
  70. --    GO <command tail>
  71.  
  72.   ex:    STAT A:*.*
  73.     GO B:*.*    (re-executes the currently loaded program)
  74.  
  75.  
  76. other
  77. -----    [[d][u]:name <command tail>    (transient commands)
  78.  
  79.   ex:    STAT            (executes STAT.COM)
  80.     A:DIR            (executes A:DIR.COM)
  81.     B4:TESTIT        (executes B4:TESTIT.COM)
  82.     3:TRYIT            (executes current drive, user 3 TRYIT.COM)
  83.  
  84. note that files with the same names as built-in commands can be executed
  85. by including a du specification.
  86. k