python执行shell命令并获取执行后的数据

代码:

import os
 
status = os.popen('bash ~/Desktop/test.sh') # 使用os.popen获取执行后的数据
 
print(status.read())

非常好用

posted @ 2022-04-09 23:16  睡觉不困  阅读(426)  评论(0编辑  收藏  举报