home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / compress / 3900 < prev    next >
Encoding:
Text File  |  1992-11-20  |  1.7 KB  |  61 lines

  1. Newsgroups: comp.compression
  2. Path: sparky!uunet!mcsun!sun4nl!htsa.htsa.aha.nl!eduard
  3. From: eduard@htsa.aha.nl (Eduard Beijnes)
  4. Subject: Re: compressor writing uuencoded files
  5. References: <1992Nov19.141920.27289@htsa.aha.nl> <Bxz9L9.CqK@ns1.nodak.edu>
  6. Date: Fri, 20 Nov 1992 15:20:45 GMT
  7. Organization: Algemene Hogeschool Amsterdam, Polytechnic Institute
  8. Message-ID: <1992Nov20.152045.2925@htsa.aha.nl>
  9. Lines: 50
  10.  
  11. I learned from the example you gave but..
  12.  
  13. it was not exactly wat I meant.
  14.  
  15. If you want to send a file which is bigger as 64k they say it will not 
  16. work everywhere so people split it.
  17. Something i would like is a program capable of
  18.  
  19. compress file | uuencode <file.Z > file.Z.uue | split file.Z.uue.spl
  20. (with split I mean a program which splits file.uue in several chunks)
  21.  
  22. then someone reads news (or gets a email message with a program )
  23.  
  24. you should be able to:
  25. read article (1 of 5) - save article as carbage.spl
  26. read part 3 of 5 - save article as carbage.spl (appended)
  27. read part 2 of 5 - save article as carbage.spl (appended)
  28. read part 4 of 5 - save article as carbage.spl (appended again)
  29. read part 5 of 5 - save article as carbage.spl (append)
  30.  
  31. then type:
  32. mv carbage.spl file.spl.Z.uue (original name)
  33. unsplit file.Z.uue.spl|uudecode file.Z.uue|decompress file.Z
  34.  
  35. (unsplit finds out him/herself out which order the carbage is.
  36. and resort it.
  37.  
  38. another example:
  39.  
  40. garbo.uwasa.fi sends a file back to you (after you're request)
  41. which is a bit messy (it contains several chunks :
  42.  
  43. mail part 35 of 100 
  44. begin bigfile part 35 of 100
  45. ....
  46. end of part 35 of 100
  47.  
  48. begin bigfile 1 of 100
  49. ....
  50. end of part 1 of 100
  51.  
  52. etc....
  53.  
  54. It would be nice if you can type:
  55.  
  56. unsplit mboxfile|uudecode|decompress
  57. rm mboxfile
  58. and use the file(s) you asked
  59.  
  60. (BTW thanks for you're reply)
  61.