#!/bin/rc
# mount_iso is very special to me
# -Kenar-
rfork e
m=/usr/arisawa/9front
if(! test -e $m){
	echo $m not exit
	exit
}
if(test -e $m/sys){
	echo already mounted
	exit
}
t=/n/other/usr/arisawa/9front
if(! test -e $t){
	echo $t not exit
	exit
}
i=`{ls $t/*.iso | tail -1}
mount /srv/9660 $m $i
