在bash shell脚本中执行多种语言

时间:2016-10-24 21:20:58

标签: bash unix webserver centos7

我需要创建一个shell脚本来执行 node perl php python 服务器。如何在bash中执行各种语言?

1 个答案:

答案 0 :(得分:2)

您只需运行相应的解释器。

#!/bin/bash

python script1.py
perl script2.pl
# etc