home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / FILEUT-2.ZIP / GCOPY2.TXT < prev    next >
Text File  |  1985-03-15  |  2KB  |  44 lines

  1. /*  GCOPY.C      Version 1.01, Distributed 05/19/84                             
  2.  
  3.     Copyright (c) 1984, Gordon Lee Waite
  4.     708 Westwinds Drive  #1
  5.     Iowa City, Iowa  52240
  6.  
  7.     SUMMARY:     gcopy d:xxxxxxx.xxx t:
  8.  
  9.     ARGUMENTS:   d:xxxxxxxx.xxx specifies the ambiguous file
  10.                  name used for the target search
  11.                  
  12.                  if the d:xxxxxxxx.xxx is left out, GCOPY
  13.                  assumes the users wants *.*
  14.                  
  15.                  t: specifies the drive for the output
  16.  
  17.     description: GCOPY is used to copy files from one drive to
  18.                  another.  The user may enter an ambiguous
  19.                  file name and drive specifier.  The program
  20.                  then goes through the matching files it finds
  21.                  in the directory and asks the user if he wants
  22.                  to copy over this file.  The program keeps
  23.                  track of the desired files, then copies them
  24.                  after all have been specified.
  25.  
  26.                  Version 1.01 adds a feature whereby the diskettes
  27.                  may be changed after invoking GCOPY.  The directory
  28.                  of the source disk will not be read until the
  29.                  RETURN key is pressed at the prompt after the first
  30.                  screen.  This allows you to keep a copy of GCOPY on
  31.                  one utility disk and make use of the program without
  32.                  having to maintain a copy on all of your diskettes.
  33.  
  34.     This program was compiled using the Manx Aztec C Compiler.
  35.  
  36.     The compile and link process is as follows:
  37.  
  38.         c86 gcopy.c
  39.         as86 -o gcopy.o gcopy.asm
  40.         ln -o gcopy.exe gcopy.o gorlib.lib dosa.lib videoa.lib libc.lib
  41.         multdel gcopy.o gcopy.asm
  42. */
  43.  
  44.