home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / filutl / uustrip.arc / UUSTRIP.DOC next >
Text File  |  1989-03-19  |  2KB  |  39 lines

  1. UUSTRIP 0.0
  2.  
  3.  
  4. Syntax: uustrip infile outfile
  5.  
  6. The purpose of uustrip is to take a multi-part uuencoded binaries
  7. posting and prepare it quickly for uudecode. I generally use the
  8. picnix utility "cat" to actually glue the various parts together. DOS
  9. copy should be able to be used too. Copy file1+file2+etc file.out . . .
  10.  
  11. If we have a five part posting, I need merely type:
  12.  
  13.  cat file1 file2 file3 file4 file5 > file.out
  14.  uustrip file.out file.uue
  15.  uudecode file.uue
  16.  
  17. All this program does is check the first few characters of every line.
  18. It recognizes the beginning of a uuencoded file, and the ending, and
  19. the regular first-line character. Anything else is simply discarded.
  20. It may not work in some situations. Particularly lines beginning with
  21. Mx (where x is any ascii character) which are not part of the
  22. uuencoded file will cause an error. It's been tested on all recent
  23. postings to comp.binaries.ibm.pc and worked on all of them. So it
  24. seems to be moderately useful as is.
  25.  
  26. Sure beats manually loading all the source files into an ascii editor
  27. and stripping the header and tail stuff.
  28.  
  29. Submitted to comp.binaries.ibm.pc by  Doug Thompson
  30.  
  31. ------------------------------------------------------------------------
  32. Fido      1:221/162 -- 1:221/0                         280 Phillip St.,  
  33. UUCP:     !watmath!isishq!doug                         Unit B-4-11
  34. DAS:      [DEZCDT]doug                                 Waterloo, Ontario
  35. Bitnet:   fido@water                                   Canada  N2L 3X1
  36. Internet: doug@isishq.fidonet.org                      (519) 746-5022
  37. ------------------------------------------------------------------------
  38.  
  39.