#!/bin/tcsh
@ i = 1;
@ end = 10;

while ($i <= $end)
        ./mymount -t nfs 127.0.0.1:/tmp /mnt ;
	cd '/mnt';
	umount /mnt;
	@ i++;
end

