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 / BEEHIVE / ZSUS / Z3HELP-3.LBR / M.LBR / MAKE.HZP / MAKE.HLP
Text File  |  2000-06-30  |  3KB  |  63 lines

  1. ;
  2.                                    MAKE.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5.                3k (22)   032F  2.7        Eugene Nolan 4/88        Z3COM6
  6.  
  7.   1- Syntax  2- Options  3- Examples of Use                                   
  8.  
  9.  
  10.    MAKE  allows  one  to  change the user number  of  designated  files  on  a 
  11. designated  drive  to a different user number.   This is carried  out  without 
  12. copying  the  files and then deleting the original  files;  rather,  the  user 
  13. number  tag  in the disk directory is simply changed to reflect the  new  user 
  14. number.   MAKE  also  has options to set file attributes of  read-only,  read-
  15. write,  system,  and directory,  as well as archive or non-archive.  Files can 
  16. also be erased or unerased.
  17. :1
  18.  
  19.  
  20.    Syntax:  MAKE d:afn o [/o]     <-- all
  21.             MAKE du:afn o [/o]    <-- all
  22.             MAKE dir:afn o [/o]   <-- ZCPR3 version
  23.  
  24.       where the drive, driver/user, and named directory forms (where
  25.       appropriate) are optional and where "o" is one of the options
  26. :2
  27.  
  28. MAKE options:
  29.  
  30.    DIR:  -  new DIR for files (ZCPR3 version ONLY)
  31.    DU:   -  new DU for files
  32.    U:    -  new DU for files  
  33.    nn    -  new user # for files (0-31)
  34.    R     -  set files to R/O
  35.    W     -  set files to R/W
  36.    S     -  set files to SYS
  37.    D     -  set files to DIR
  38.    A     -  set files to ARCHIVE
  39.    N     -  set files to Non-ARCHIVE
  40.    E     -  erase files
  41.    U     -  unerase files
  42.    blank -  show status of files
  43.   /o     -  auto delete of dest file 
  44.  
  45.    The above options act only for files in the current user area.  If a '#' is 
  46. specified after the options, files from all user areas will be affected.
  47. :3
  48.  
  49.  
  50. Examples of Use:
  51.  
  52.    a. MAKE can be used in aliases to MAKE overlays 'public'.  It makes use  of 
  53.       SETDRU filters unnecessary, in those situations where multiple copies of
  54.       a program would otherwise be required on several directories.
  55.    
  56.       'MAKE WS*.COM 6;MAKE *.OVR 6;WS %d%u:%f'
  57.  
  58.       With WS and  its overlays  in A0, this will put them in A6.  Now you can
  59.       edit the pointer file  in user area 6.  The  path finds MAKE  and WS.COM 
  60.       and they have enough intelligence to  find its overlays  as long as they 
  61.       are in the same user area and on the same drive.  The pointer file could
  62.       be on a default drive other than A.  <
  63.