:	"Mount command	arw	25 Mar 81
		Try to mount the device given,
		it it fails because of an unclean filesystem,
		check it, then mount again.
"
PATH=/bin:/usr/bin

/etc/mount $*
if test $? = 2; then
	echo "Checking $1 ( $2 )"
	fsck -t /tmp/fsck$$ $1
	/etc/mount $*
fi
