#!/bin/sh
#	Unshar files...
# Unpack a list of shar files, after first stripping off any possible
# email junk at the beginning.  We rely on the fact that shar always
# generates output starting with either "#" or ":"

for f
do	echo Unpack $f ...
	sed<$f -e "1,/^[#:]/d" | sh
done
