Skip to content

Instantly share code, notes, and snippets.

@dcolish
Created August 18, 2013 17:59
Show Gist options
  • Save dcolish/6263005 to your computer and use it in GitHub Desktop.
Save dcolish/6263005 to your computer and use it in GitHub Desktop.
import shutil
import sys
try:
shutil.copyfile(sys.argv[1], sys.argv[2])
except shutil.Error as e:
pass
except IOError as ioe:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment