Go to the documentation of this file.00001
00002 import glob
00003 import os
00004
00005 print "Copying reference *.out to *.ref."
00006 files = glob.glob("*.out")
00007 for file in files:
00008 cmd = "cp %s %s " % (file, file[:-4] + ".ref")
00009 print cmd
00010 os.system(cmd)
00011