#! /bin/bash
#

status=1

rm $temp/ipsg2.output

touch $temp/ipsg2.output

while [ $status = 1 ]
do
	$myexe/pwtime
	status=$?

	if [ $status = 1 ]
	then
		$exe/ipsg2 -mod nagoya=nagoya,,yearly < $temp/ipsg2.input >> $temp/ipsg2.output
	fi
done

echo done
exit 0
