Mercurial > repos > miller-lab > genome_diversity
view cp.py @ 39:e56023008e36 default tip
Changed revision of package_fisher_0_1_4 to be2fc454d121
Changed revision of package_matplotlib_1_2 to a03ee94316b5
author | miller-lab |
---|---|
date | Mon, 06 Jul 2015 10:32:24 -0400 |
parents | 95a05c1ef5d5 |
children |
line wrap: on
line source
#!/usr/bin/env python import shutil import sys if len(sys.argv) != 3: print >> sys.stderr, 'Usage: %s <src> <dst>' % sys.argv[0] sys.exit(1) src, dst = sys.argv[1:3] shutil.copy2(src, dst)