diff options
Diffstat (limited to 'test cases/common/245 custom target index source/copyfile2.py')
-rw-r--r-- | test cases/common/245 custom target index source/copyfile2.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/common/245 custom target index source/copyfile2.py b/test cases/common/245 custom target index source/copyfile2.py new file mode 100644 index 0000000..efbfc28 --- /dev/null +++ b/test cases/common/245 custom target index source/copyfile2.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +import sys +import shutil + +shutil.copyfile(sys.argv[1], sys.argv[2]) +shutil.copyfile(sys.argv[3], sys.argv[4]) |