#!/bin/sh -

fs mkm foo root.cell -cell athena -fast
fs lsm foo | fgrep athena.mit.edu:root.cell >/dev/null
status=$?; echo $status
fs rmm foo
case $status in
0)	exit 0;;
*)	echo "$0: Test failed."; exit 1;;
esac
