This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Script to copy one file to another | |
| from sys import argv | |
| from os.path import exists | |
| script, from file, to file = argv | |
| print "Copying from %s to %s" % (from_file, to_file) | |
| #We could do these two on one line. How? |