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 / ZCPR33 / A-R / C-HELP.LBR / COMP1.HZP / COMP1.HLP
Text File  |  2000-06-30  |  3KB  |  74 lines

  1. ;
  2. )                                   COMP.COM                                   (
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5.                4k (28)   D4B4  2.8        Dennis Wright 1/86       Z3COM2
  6. ==============================================================================
  7.  
  8.  
  9.  
  10.  
  11.    COM╨á compare≤á ▓á file≤ displayinτá byte-for-bytσá matcΦá anΣá difference«ì
  12. Split-screeε display¼ showinτ match¼ differences¼ iε botΦ he° anΣ ASCII¼ ease≤ ì
  13. comparison«á  Ha≤á trailinτá ╘á optioε fo≥ settinτ Registe≥ ╣á (oµá ZCPR│á RE╟ ì
  14. utility⌐á witΦá code≤ ░ t∩ 3¼á indicatinτ file≤ (sourcσ anΣá destination⌐á no⌠ ì
  15. found¼ anΣ file≤ eithe≥ identica∞ o≥ different.
  16.  
  17.  
  18.  
  19. )  1- Syntax/Options  2- Examples of Use  3- Help File  4- COMP.HLP            (
  20. :1
  21.  
  22.  
  23.    Syntax:  COMP du:file1 du:file2 /o
  24.  
  25.   Options:  M    ...display the differences but use memory relative 
  26.                       addresses starting at 100 hex
  27.             T    ...differences are tested for but not displayed.  Flow
  28.                       control register 9 is set depending on the test 
  29.                       results as follows:
  30.                       Reg 9 = 0 if both files compare
  31.                       Reg 9 = 1 if file1 is not found
  32.                       Reg 9 = 2 if file2 is not found
  33.                       Reg 9 = 3 if files do not compare
  34. :2
  35.  
  36. Examples of Use:
  37.  
  38.    a. Following ZEX file tests if version of file exists before copying:
  39.  
  40.       COMP $1 $1 /T
  41.       IF 9 1
  42.         ECHO -- $1 NOT FOUND
  43.       ELSE
  44.         IF 9 2
  45.           ECHO -- DESTINATION FILE DOES NOT EXIST, COPYING $1 TO DESTINATION
  46.           AC $2=$1
  47.         ELSE
  48.           IF 9 3
  49.             ECHO -- FILES ARE DIFFERENT, UPDATING $2 with $1
  50.             AC $2=$1
  51.           ELSE
  52.             ECHO -- FILES ARE IDENTICAL, UPDATE NOT REQUIRED
  53.           FI
  54.         FI
  55.       FI 
  56.  
  57.  
  58.  
  59. Examples of Use (continued):
  60.  
  61.    a. w comp WORK:*.* BACKUP:<cr>   <-- Uses W.COM and COMP to compare, file 
  62.                                         by file, equality of directories WORK 
  63.                                         and BACKUP.
  64. :3
  65.  
  66.  
  67.                                    COMP.HLP
  68.  
  69.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  70.                5k (34)   BB9E  2.8        Dennis Wright 1/86       Z3HLP2
  71. ==============================================================================
  72.  
  73.    Z-System HELP file for COMPare utility.
  74. :4 :COMP