Last active
August 29, 2015 14:01
-
-
Save slezica/b1a8056afca31d5d0a5a to your computer and use it in GitHub Desktop.
This file contains 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
#!/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) | |
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