mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
10 lines
194 B
Python
10 lines
194 B
Python
|
#!/usr/bin/env python3
|
||
|
import sys
|
||
|
from Model import *
|
||
|
if len(sys.argv) < 2:
|
||
|
print("请加入需要的命令")
|
||
|
sys.exit(1)
|
||
|
o = ""
|
||
|
for i in sys.argv[1:]:
|
||
|
o += f"'{i}' "
|
||
|
OpenTerminal(o)
|