chdir("/users/gary/cloudy/tsuite");
while( defined( $input = glob("*.in") ) )
{
	print( "$input going to " );
	$output = $input;
	$output =~ s/\.in/.out/gi;
	print("$output\n");
#	system "/users/gary/cloudy/c93/cloudy.exe < $input  > $output";
}
