搜索
您的当前位置:首页正文

python怎么shell脚本运行

2024-08-01 来源:育乐教育网

python中运行shell脚本的方法:

1.首先编写一个shell脚本

hello.sh

#!/bin/bash
echo "hello world!"
exit 2

2.在Python中运行shell脚本

下面的512是返回的状态码,如果eixt 0时则返回的是0.

更多Python知识,请关注:!!

Top