StripLineNumbers.py
Go to the documentation of this file.
1 os, shutil
2 
3 root, dirs, filenames in os.walk("/Users/ljf26/OscLib"):
4  for f in filenames:
5  print f
6  shutil.copyfile(f,f+"_temp")