我有以下python脚本尝试使用os.system调用启动两个bash脚本 这里提供了bash脚本的内容;
观察:在windows10上;我看到以下序列
在VM上运行的Windows7上;我注意到“ok”和“done”正在打印,而脚本仍然在后台执行;
python script>>>>>
import os
os.system("C:/Users/concurrenttest.sh")
print("ok")
os.system("C:/Users/concurrenttest1.sh")
print("done")
concurrenttest.sh>>>>>
sleep 10
echo "This is from first script"
concurrenttest1.sh>>>>>
sleep 5
echo "This is from second script"