相关疑难解决方法(0)

在Python中确定正在运行的程序

我如何使用Python来确定当前正在运行的程序.我在Windows上.

python windows process

18
推荐指数
4
解决办法
2万
查看次数

Windows批处理:在后台运行进程并等待它

我需要从批处理作业中启动2个后台进程,然后等待它们.Unix shell模拟是:

myprocess1 -flags1 &
pid1=$!

myprocess2 -flags2 &
pid2=$!

wait ${pid1}
wait ${pid2}
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?

windows batch-file windows-shell

2
推荐指数
1
解决办法
1万
查看次数

标签 统计

windows ×2

batch-file ×1

process ×1

python ×1

windows-shell ×1