python 怎么判断命令执行的时间长短和结束状态
发布网友
发布时间:2022-04-24 01:05
我来回答
共1个回答
热心网友
时间:2023-10-17 05:53
你是说用python查看shell的命令的运行状态吧?
一般我会用commands模块
比如查看某个我启动的后台进程是否终止了
stat, output = commands.getstatusoutput( "ps aux | grep PATTERN | wc -l" )
if output == '0':
....
热心网友
时间:2023-10-17 05:53
你是说用python查看shell的命令的运行状态吧?
一般我会用commands模块
比如查看某个我启动的后台进程是否终止了
stat, output = commands.getstatusoutput( "ps aux | grep PATTERN | wc -l" )
if output == '0':
....