SyFi  0.3
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 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator