home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / amiga / programm / 18360 < prev    next >
Encoding:
Text File  |  1993-01-08  |  969 b   |  26 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!cis.ohio-state.edu!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!news.byu.edu!ux1!fcom.cc.utah.edu!cs.weber.edu!alewis
  3. From: alewis@cs.weber.edu (alan lewis)
  4. Subject: Re: REPOST: GNU C++ in smaller chunks?
  5. Message-ID: <1993Jan8.170101.17141@fcom.cc.utah.edu>
  6. Sender: news@fcom.cc.utah.edu
  7. Organization: University of Utah Computer Center
  8. References:  <1993Jan7.102637.2667@dct.ac.uk>
  9. Date: Fri, 8 Jan 93 17:01:01 GMT
  10. Lines: 14
  11.  
  12. If your using a Unix machine, and you can get the whole file, you can split it
  13. up with dd.  On the amiga you reassemble it with join.  i.e.
  14.  
  15.     dd if=gcc233.lha bs=1024 count=700 skip=0 of=gcc233.lha.1
  16.  
  17. you would change the count to 7000 then 1400 then 2100 etc.
  18.  
  19. On the amiga you would use:
  20.  
  21.     join gcc233.lha.1 gcc233.lha.2 etc. as gcc233.lha
  22.  
  23. ^You should be able to get enough disk space on your system by asking the
  24. administrator, even if it's only temporary.
  25.  
  26.