Skip to content

Instantly share code, notes, and snippets.

@ronkagan
ronkagan / Ex17.py.py
Created September 7, 2014 20:27
Ex17.py.py
#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?