[comp.sys.mac] Why are files divided in .binaries?

avalon@ssyx.ucsc.edu (Scott A. McIntyre) (04/17/88)

Why is it that files posted to comp.sys.mac.binaries and sumex.aim
are divided in to smaller files?  Earlier today, I downloaded VisionLab
from sumex.aim, and tried to unbinhex it with Stuffit 1.31, but Stuffit
hung in never never land.

Eventually, I had to use macwrite and cut and paste all seven files into
one file.  Binhex V did not do it either.

Help?

Scott

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
		avalon@ssyx.ucsc.edu		ARPA/Internet \ 
		         or		 	               > Me!
		avalon@ucsck.BITNET 	   	    Bitnet    /
                   "If I die, does my Mother get a refund?"
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

liberte@zaphod.ncsa.uiuc.edu (04/21/88)

> /* Written  7:22 pm  Apr 16, 1988 by avalon@ssyx.ucsc.edu in zaphod:comp.sys.mac */
> Why is it that files posted to comp.sys.mac.binaries and sumex.aim
> are divided in to smaller files?

Because mailers cannot handle large files.

> Earlier today, I downloaded VisionLab
> from sumex.aim, and tried to unbinhex it with Stuffit 1.31, but Stuffit
> hung in never never land.

Stuffit's binhexing and unbinhexing are flacky.  It binhexes differently
from other binhexers.  It seems to be able to unbinhex any format, except
that if there is any error, it hangs.  I dont use it for either direction.

> Eventually, I had to use macwrite and cut and paste all seven files into
> one file.  Binhex V did not do it either.

Below is my latest joiner script.

Dan LaLiberte
NCSA, UofI Urbana-Champaign
liberte@ncsa.uiuc.edu

-------------------
#! /bin/awk -f
# Join the contents of files between "---" marks.
# Usage:  joiner input > output

BEGIN { inhex = 0 }
/^---/  { if (inhex && (NF > 1)) {
		inhex = 0
		}
		else {
		  inhex = 1
		  }
		getline
		}

	{ if (inhex) print $0 }