home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FILUTL / REBUILD2.ZIP / READ.ME next >
Encoding:
Text File  |  1990-07-27  |  1.7 KB  |  41 lines

  1. REBUILD    -     Rebuilds the original file as it was UUENCODEd by SIMTEL
  2.         server. It works ONLY if the file was UUENCODEd (maybe
  3.         XXENCODEd also, but I've never tested) and is useful if
  4.         SIMTEL server had to split it in several pieces. See the
  5.         "USAGE" below. REBUILD.AWK is an AWK script with the same
  6.         functionality, but slower, of course !
  7.  
  8. AUTHOR    -    MARIO A. Nascimento    E-MAIL: mario@ntiaa.embrapa.ansp.br
  9.                     POSTAL MAIL:    NTIA - EMBRAPA
  10.                             P.O. Box 5010
  11.                             13031 - Campinas - SP
  12.                             BRAZIL
  13.  
  14. STATUS    -    Public Domain. Just maintain this note as part of this 
  15.         source program. No warranties. You are on your own, being 
  16.         the only responsible for using this piece of software.
  17.         If you find it useful I would be pleased to know that,
  18.         and instead of ANY donation just tell me that you are using 
  19.         this program (e-mail or send me a ... postal card 8-) !)
  20.         If it doesn't work: read "USAGE" again, and then tell me
  21.         what's your problem. TELL ME about ANY MODIFICATIONS you do 
  22.         to the source.
  23.  
  24. USAGE    -    It is really simple ...
  25.  
  26.     o    compile it with default options in MSC 5.0 under MSDOS 3.3
  27.         (you can try another one, it is simple enough to compile) 
  28.         or use rebuild.exe if you don't have a C compiler;
  29.     o    merge the received splitted files in one (observe its order) 
  30.         in your host machine, suppose this one is called MERGED.UUE; 
  31.     o    transmit it to your PC-clone using kermit or whatever (it is
  32.         still in ASCII mode);
  33.     o    execute: 
  34.             rebuild < MERGED.UUE > ORIGINAL.UUE if you are using
  35.         the C program or:
  36.             awk -f REBUILD.AWK MERGED.UUE > ORIGINAL.UUE
  37.         if you have AWK in your host/PC.
  38.     o    uudecode ORIGINAL.UUE and you'll have the original as it was
  39.         in SIMTEL archives. 
  40.     o    Now it's your turn to do the job ...
  41.