You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
297 B
16 lines
297 B
2 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import time
|
||
|
|
||
|
# def runSyncplay(args: list, envs: dict) -> None:
|
||
|
# os.execvpe('syncplay-server', ['syncplay-server'] + args, envs)
|
||
|
|
||
|
# runSyncplay(['--password', 'test'], {'PYTHONUNBUFFERED': '1'})
|
||
|
|
||
|
print(sys.argv)
|
||
|
print(os.environ)
|
||
|
|
||
|
time.sleep(200)
|