Conditions | 2 |
Total Lines | 9 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | #!python3 |
||
8 | def main(): |
||
9 | parser = argparse.ArgumentParser() |
||
10 | parser.add_argument("infiles", nargs='+', |
||
11 | help="Paths to the input files") |
||
12 | parser.add_argument("outdir", |
||
13 | help="Path to the output directory") |
||
14 | args = parser.parse_args() |
||
15 | for infile in args.infiles: |
||
16 | shutil.copy2(infile, args.outdir) |
||
17 | |||
21 |