leading comments

William J. Bogstad bogstad at HOPKINS-EECS-BRAVO.ARPA
Thu Aug 22 01:15:23 AEST 1985


(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________



More information about the Comp.sources.unix mailing list