home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / DOS / UTILITY / SCHIJF / WIZ31 / FDUP.DOC next >
Text File  |  1994-10-26  |  4KB  |  118 lines

  1.  
  2.                 FDUP version 1.3
  3.                by Ray Van Tassle
  4.                1020 Fox Run Lane
  5.              Algonquin, Ill, 60102
  6.                 (708)-658-4941
  7.             internet: rayvt@comm.mot.com
  8.                    October 27, 1994
  9.  
  10.     FDUP program and manual copyright(c) 1990-1994 by Ray Van Tassle.
  11.  
  12.     Abstract:
  13.     ---------
  14.     FDUP will find files with duplicate names on your disk(s).  It 
  15.     works in conjunction with WIZ, which does the actual scanning of the 
  16.     disk(s).
  17.     FDUP is just the thing for today's huge multi-gigabyte hard disks--
  18.     it can handle over 123,000 files!!  And fast---time to process
  19.     (excluding printout time) 65,000 files is only 25 seconds on a 486/33.
  20.     By default, FDUP will ignore some common filenames.
  21.        
  22.        
  23.     Quickstart
  24.     ----------       
  25.     You MUST have WIZ installed, and on the PATH.
  26.     To get a list of all the duplicated filenames on your disks:
  27.         >FDUP
  28.     
  29.     To consider only some of your disks:
  30.         >FDUP CD:
  31.     
  32.     To get summary information, but not the actual filenames:
  33.         >FDUP -q
  34.     
  35.     
  36.     Operation & Versions
  37.     --------------------
  38.     * By default, FDUP will ignore these common filenames:
  39.         DESC.SDI
  40.         DESCRIPT.ION
  41.         FILE_ID.DIZ
  42.         READ.ME
  43.         README.
  44.         README.1ST
  45.         README.COM
  46.         README.DOC
  47.         README.EXE
  48.         README.TXT
  49.         MAKEFILE.
  50.         MAKEFILE.BAK
  51.         WHATS.NEW
  52.     
  53.     * There are two executable files provided, FDUP.EXE and 
  54.     FDUP32.EXE.  FDUP.EXE will run on any 80x6 PC.  It will page the 
  55.     internal data-base to XMS or disk when it runs out of low DOS 
  56.     memory.  Operation will slow down considerably once it starts 
  57.     paging.  FDUP32.EXE runs in 32-bit protected mode, and will run
  58.     only on a 386 or above.  It used the free GJGPP C compiler and 
  59.     GO32 DOS extender.  It will use all available memory (low DOS 
  60.     and extended memory), and is *much* faster than FDUP.EXE paging.
  61.     It seems to be always slightly faster than FDUP.
  62.     If you have a 386 or above, I recommend that you delete FDUP.EXE 
  63.     and rename FDUP32.EXE to FDUP.EXE.
  64.     
  65.     * FDUP spawns WIZ to scan the disk(s).  WIZ creates a temporary file 
  66.     (WIZDUP.TMP), which FDUP reads, then deletes.
  67.     You can use any of the WIZ scanning rules, by placing the 
  68.     switches for WIZ in quotes:
  69.         FDUP "*.exe -s10000"
  70.             Will tell you about duplicated EXE files that are 
  71.             larger than 10KB.
  72.     You *must* have at least one colon (:) or space inside the 
  73.     quotes, or it won't be recognized as parameters for WIZ.
  74.     
  75.     
  76.     Command-line Switches
  77.     ---------------------
  78.     fdup [-dnqv] [disks-to-scan:] ["parameters for WIZ"]
  79.         -d = Use disk for swapfile, not XMS.
  80.         -n = Display names only, not paths.
  81.         -q = quiet--don't print dup's, just summary information.
  82.         -v = (debug) print paging info.
  83.         -vv = (debug) print files while reading.
  84.  
  85.     Disks-to-scan:
  86.         * Omit to scan all disks (as defined by WIZ)
  87.         * A list of disks, such as: "CDFG:"
  88.         * A range of disks, such as: "C-J:"
  89.         * A mixture, such as: "C-JWZ:"
  90.         The ":" is required.
  91.  
  92.     Other specifiers:
  93.         You can limit the search to particular filenames like this:
  94.         >FDUP s*.exe
  95.         >FDUP cd:foo*.dat
  96.         >FDUP cd: *bar.*
  97.  
  98.     Notes on mixing parameters:
  99.         >FDUP c: "-x "       ---- allowed
  100.         >FDUP "c: -x"       ---- allowed
  101.         >FDUP "c: -x "       ---- allowed
  102.         >FDUP c: "-x"       ---- won't work
  103.         >FDUP c: -x       ---- won't work
  104.         >FDUP c: "d: -x"   ---- won't work right
  105.         >FDUP "cd: -x"       ---- do this instead
  106.         >FDUP cd: " -x"       ---- ... or this
  107.  
  108.  
  109.  
  110.     Upcoming features
  111.     -----------------
  112.     I don't know.
  113.     Any request for showing the names of files which
  114.     have exactly 'n' copies (including 1, for filenames which don't
  115.     have duplicates)?
  116.  
  117.  
  118.