#!/bin/sh
#
# this file should be called autorun and have execute permission
#


for a in `grep cdrom /etc/fstab |sed "s/ * /#/g" |cut -d'#' -f'2'`
do

if [ -e $a/welcome.htm ]; then
	netscape file:$a/welcome.htm
fi

done
