新增安装qemu/vbox功能

This commit is contained in:
2023-04-08 11:57:36 +08:00
parent 002a6e309d
commit fd78edd2f7
9 changed files with 60 additions and 5 deletions

10
RunCommandWithTerminal.py Normal file
View File

@@ -0,0 +1,10 @@
#!/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)