home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / sun / apps / 2744 < prev    next >
Encoding:
Text File  |  1992-12-14  |  1.4 KB  |  39 lines

  1. Newsgroups: comp.sys.sun.apps
  2. Path: sparky!uunet!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!yale!gumby!smaug!frodo!jipping
  3. From: jipping@cs.hope.edu (Mike Jipping)
  4. Subject: Re: Creating a tape extract_unbundle can read?
  5. Message-ID: <1992Dec14.121058.19854@cs.hope.edu>
  6. Sender: news@cs.hope.edu
  7. Reply-To: jipping@cs.hope.edu
  8. Organization: Hope College
  9. References: <1992Dec10.210220.2638@eplrx7.es.duPont.com>
  10. Date: Mon, 14 Dec 1992 12:10:58 GMT
  11. Lines: 26
  12.  
  13. In article 2638@eplrx7.es.duPont.com, cristy@eplrx7.es.duPont.com (Cristy) writes:
  14. >A co-worker is interested in creating a tape that extract_unbundle can
  15. >read.  I looked at the man page and it offered no help.  Does someone
  16. >know how or know of a document that describes how to create a tape that
  17. >can be read by extract_unbundle.  Please respond via Email to
  18.  
  19. I use the script below.  I have not used it recently, but it worked under
  20. SunOS 4.1.1.
  21.  
  22.       Mike Jipping
  23.       Hope College Department of Computer Science
  24.       jipping@cs.hope.edu  (BITNET: JIPPING@HOPE)
  25.  
  26.       "He just bought a toupee.  Now my father looks like he's
  27.        balancing a roadkill on the top of his head!"
  28.  
  29.                                -- Vinnie, "Doogie Howser, M.D."
  30.                                
  31. ======================= clip clip clip =====================================
  32. set -x
  33. dd if=Copyright of=/dev/rst0
  34. mt -f /dev/nrst0 fsf 1
  35. tar cvbf 126 /dev/nrst0 install_unbundled
  36. tar cvbf 126 /dev/rst0 gantt inseteditors gantt.wkz ganttwz
  37.  
  38.  
  39.