Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.2 9/18/84; site brl-tgr.ARPA
Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!think!harvard!seismo!brl-tgr!tgr!bogstad@HOPKINS-EECS-BRAVO.ARPA
From: bogstad@HOPKINS-EECS-BRAVO.ARPA (William J. Bogstad)
Newsgroups: net.sources
Subject: Re: leading comments
Message-ID: <838@brl-tgr.ARPA>
Date: Wed, 21-Aug-85 11:15:23 EDT
Article-I.D.: brl-tgr.838
Posted: Wed Aug 21 11:15:23 1985
Date-Received: Sat, 24-Aug-85 17:51:34 EDT
Sender: news@brl-tgr.ARPA
Lines: 42

(Please note this was posted from the Arpanet side.  Thus, the lack
of references.)

	I, for one, dislike using a "unshar" program.  Often the only
documentation (or at least the most understandable documentation)
is in the text before the "cut here" line.  If I were to
indiscriminately use unshar I would end up with programs which
I wouldn't know how to use.

				Bill Bogstad

P.S.  Since this is unix-sources a.k.a. net.sources.....

---CUT HERE---
#! /bin/sh
# This is a shar archive and should be unpacked with /bin/sh
# Date: Wed Aug 21 11:00:22 EDT 1985
# Files: README cmd
#
echo 'sh - README'
sed 's/^X//' <<'________This_Is_The_END________' >>README
X
XThis shell script is designed to search your PATH for particular
Xinstances of a program.
________This_Is_The_END________
echo 'sh - cmd'
sed 's/^X//' <<'________This_Is_The_END________' >>cmd
XIFS=:
Xfor i
Xdo
X	for j in $PATH
X	do
X		for k in $j/$i
X		do
X			if [ -f $k ]
X			then
X				echo $k
X			fi
X		done
X	done
Xdone
________This_Is_The_END________