new_ref_files.py

Go to the documentation of this file.
00001 #!/usr/bin/env python
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 

Generated on Mon Aug 31 16:16:45 2009 for SyFi by  doxygen 1.5.9