home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / rec / games / hack / 7866 next >
Encoding:
Internet Message Format  |  1992-12-21  |  1.4 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!nigel.msen.com!hela.iti.org!cs.widener.edu!dsinc!ub!exucom.com!cyberman
  2. From: cyberman@exucom.com (Stephen R. Phillips)
  3. Newsgroups: rec.games.hack
  4. Subject: Re: Newbie Question
  5. Message-ID: <1992Dec21.042833.2943@exucom.com>
  6. Date: 21 Dec 92 04:28:33 GMT
  7. References: <1992Dec21.001759.25232@magnus.acs.ohio-state.edu>
  8. Organization: ExuCom Multimedia Inc.
  9. Lines: 31
  10. X-Newsreader: TIN [version 1.1 PL7]
  11.  
  12.  
  13. Dirk C Baltzly (dbaltzly@magnus.acs.ohio-state.edu) wrote:
  14. : I'm new to the game and not very computer literate etc., etc.
  15. : I have copies of the spoiler files (Part01.Z thru Part06.Z) and wonder what I 
  16. : should do with them now.  I tried unzipping them (zip110), but they don't seem 
  17. : to be zip files and they are definitely not ascii.
  18. : Would it help if I went down into the dungeon, found a wand of wishing, and 
  19. : created a ring of decoding?  Suggestions/spoilers on this one would be 
  20. : appreciated.
  21.  
  22. Try using uncompress.
  23. IE (zcat is uncompress with the STDIO option)
  24. foreach $f (*.Z)
  25.     zcat $f > $f.asc
  26.     end
  27. mv *.Z.asc *.asc
  28.  
  29. That should uncompress each *.Z file and write them to stdout then
  30. redirect them to *.Z.asc
  31. the 
  32. mv *.Z.asc *.asc
  33. renames the *.Z.asc to *.asc
  34. unless you have tar4dos you have to do this on a unix machine.
  35.  
  36. Cyberman
  37. -- 
  38. This is my sig file!
  39. Read rec.games.programer!
  40.