Skip to content

Instantly share code, notes, and snippets.

@slezica
Last active August 29, 2015 14:01
Show Gist options
  • Save slezica/b1a8056afca31d5d0a5a to your computer and use it in GitHub Desktop.
Save slezica/b1a8056afca31d5d0a5a to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os, sys, shutil
FROM_TO = (
('/origin/dir/1', '/destination/dir/1'),
('/origin/dir/2', '/destination/dir/2'),
('/origin/dir/3', '/destination/dir/3')
# ...
)
def copy(filename):
for orig_dir, dest_dir in FROM_TO:
orig = os.path.join(orig_dir, filename)
dest = os.path.join(dest_dir, filename)
print 'Moving {0} to {1}'.format(orig, dest)
shutil.copyfile(orig, dest)
print
if __name__ == '__main__':
for filename in sys.argv[1:]:
copy(filename)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment