for j
do
	echo $j:
	if test -r s.$j
	then
		echo "s.$j" already exists!
		continue
	fi
	admin -i$j -n s.$j
	if test -r s.$j
	then
		rm $j
	fi
done
