#
# get past master directory
mt fsf
if ( $status != 0) exit(1)
# get past tape directory
mt fsf
# loop to pick up sdf files on the directory
loop: 
if ( $status == 0) then
	cat < /dev/nrmt0 > sdf
	grep "^f" sdf >>& sdfs 
	grep "/snd/root/sr.2" sdfs > /dev/null
	if ($status == 0) exit(0)
	mt fsf
	goto loop
endif
exit(1)
