我有三个不同的作业需要从 FreeBSD shell 运行。如果可能的话,我想将它们合并到一个脚本中,但我找不到任何语法来做到这一点。有什么方法可以实现吗?
答案1
您可以使用冠词“&”进行并行工作,并使用“&&”逐步启动脚本
#script.sh & script2.sh & script.sh
更多信息http://www.gnu.org/software/bash/manual/bashref.html#Lists
答案2
crontab
本身从一个名为 的文件运行多个 cronjobs crontab
。
0 * * * * /home/username/script.sh
0 * * * * /home/username/script1.sh
0 * * * * /home/username/script2.sh