mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
11 lines
187 B
Python
11 lines
187 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import shutil
|
||
|
import sys
|
||
|
|
||
|
for desc in sys.argv[1:]:
|
||
|
inst = desc.split(':')
|
||
|
os.makedirs(inst[1], exist_ok=True)
|
||
|
shutil.copy(inst[0], inst[1])
|