#!/bin/csh -f
# rstart: restart the iteration process every so often

if ( $#argv < 1 ) goto syntax

echo Setting restart point at $1
cat >> itr.dat <<EOF
11 $1
EOF
goto end

syntax:
echo Usage: rstart nn

end:
