标签: python linux batch-file
请告诉我是否有办法在Linux上批量运行多个python脚本,就像在Windows上使用.bat文件批量运行多个python脚本的方式一样?感谢。
答案 0 :(得分:10)
创建脚本......
#!/bin/sh # This file is called ~/script.sh python script1.py python script2.py
使脚本可执行...
chmod +x ~/script.sh
运行脚本......
~/script.sh