From daf40f39adb7724e895072f4dcc1f8eddb9d7531 Mon Sep 17 00:00:00 2001 From: dengrb1 <125752069+dengrb1@users.noreply.github.com> Date: Fri, 5 May 2023 12:24:01 +0800 Subject: [PATCH] run_powershell --- command.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 command.py diff --git a/command.py b/command.py new file mode 100644 index 0000000..88fe896 --- /dev/null +++ b/command.py @@ -0,0 +1,20 @@ +import os +from time import sleep + + +def run(): + for i in range(4): + os.system('start powershell') + pass + pass + + +# mainloop +print('正在启动') +sleep(0.666) +print('Starting up') +sleep(0.22222) +run() + +# exit +exit() \ No newline at end of file