#
#	execute.g
#
#	Programmer: John Buchanan
#
#	status:	Public Domain
#
#	If the file t.g exists move it to tt.g and execute it.
#
if -e t.g
	mv t.g tt.g
	tt.g
endif
