使用文件顺序运行Unix命令

时间:2015-05-21 02:59:47

标签: perl unix command

我打算使用文件顺序运行unix命令。 这些命令包括运行perl脚本。

1 个答案:

答案 0 :(得分:1)

您正在寻找的是一个bash脚本。

#!/bin/bash
echo "my bash script"
mkdir "tmp"
perl my_perl_script.pl

将此项保存到文件script.sh

现在可以使用

运行它
bash script.sh

或者您可以像普通的可执行文件一样运行它:

chmod a+x script.sh # set script as executable
./script.sh