在Linux上批量运行python脚本?

时间:2012-07-02 16:56:37

标签: python linux batch-file

请告诉我是否有办法在Linux上批量运行多个python脚本,就像在Windows上使用.bat文件批量运行多个python脚本的方式一样?感谢。

1 个答案:

答案 0 :(得分:10)

创建脚本......

#!/bin/sh
# This file is called ~/script.sh

python script1.py
python script2.py

使脚本可执行...

chmod +x ~/script.sh

运行脚本......

~/script.sh