mirror of
https://github.com/monero-project/monero.git
synced 2024-12-25 22:59:26 -05:00
22 lines
359 B
Python
Executable File
22 lines
359 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import subprocess
|
|
|
|
python = sys.argv[1]
|
|
py = sys.argv[2]
|
|
c = sys.argv[3]
|
|
data = sys.argv[4]
|
|
|
|
first = python + " " + py + " > " + data
|
|
second = [c, '--wide', data]
|
|
|
|
try:
|
|
print('running: ', first)
|
|
subprocess.check_call(first, shell=True)
|
|
print('running: ', second)
|
|
subprocess.check_call(second)
|
|
except:
|
|
sys.exit(1)
|
|
|