The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
From: arnold@skeeve.com (arnold@skeeve.com)
Subject: [TUHS] who invented the email attachment?
Date: Mon, 20 Mar 2017 01:32:11 -0600	[thread overview]
Message-ID: <201703200732.v2K7WBLo022093@freefriends.org> (raw)
In-Reply-To: <df03c3de-b1bc-29fb-e723-c88e900f7368@mhorton.net>

Mary Ann Horton <mah at mhorton.net> wrote:

> This is great feedback, and the shar mechanism would seem applicable 
> here too.  But I can't seem to find a date for shar.
>
> I'm under the impression that shar came later in the 1980s. Google's 
> archive for net.sources only goes back to 1987 (unless I'm doing it 
> wrong) and clearly shar was already well established by then.
>
> Can anyone put a date on shar, or at least before/after 6/1/1980?
>
> Thanks!
>
>      Mary Ann

ISTR that there was a shar-style program in Kernighan & Pike's "The
UNIX Programming Environment".  That was circa 1984 but shar had been
around for a while before that.  Writing a simple shar creator
in shell was pretty trivial:

	for i in "$@"
	do
		echo echo ---- Extracting $i ----
		echo "cat << 'EOF' > $i"
		cat $i
		echo EOF
	done > file.shar

And I think many people just did that sort of thing on the fly
at first.

Over time shar creators got fancier, with the ability to make directories,
uuencode binaries, and split large files and put them back together
again. (Cf. the kind of postings in the netnews *.sources groups.)

Not sure this helps to put a date on shar, but certainly shar archives
were widely used in the 1983-1985 time frame...

Arnold


  parent reply	other threads:[~2017-03-20  7:32 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-18 23:46 Mary Ann Horton
2017-03-19  0:12 ` William Corcoran
2017-03-19  2:41 ` Dave Horsfall
2017-03-19  4:11   ` Nick Downing
2017-03-20  1:21   ` Mary Ann Horton
2017-03-20  2:23     ` Clem Cole
2017-03-20  7:32     ` arnold [this message]
     [not found]     ` <58cfaea1.7iwnMeBm9Gzvxy4O%schily@schily.net>
2017-03-20 17:34       ` Mary Ann Horton
2017-03-19 11:42 ` Josh Good
2017-03-19  2:14 Doug McIlroy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201703200732.v2K7WBLo022093@freefriends.org \
    --to=arnold@skeeve.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).