在一行中为多个命令设置cron

问题描述 投票:0回答:1

我使用命令./abc.sh abc_config执行sh文件

我们如何通过cron完成这项工作?对于我通常做的单一命令

5 0 * * * /test/abc.sh

但对于./abc.sh abc_config我有点困惑

unix cron
1个回答
1
投票

一个选项可能是将脚本及其参数存储在另一个脚本中并运行它?

5 0 * * * /test/run_abc.sh

run_abc.sh的内容

./abc.sh abc_config

您可能应该包含路径和匹配您想要使用的shell的“shebang”,即:

#!/usr/bin/env bash
/path-to-dir-where-program-is/abc.sh abc_config
© www.soinside.com 2019 - 2024. All rights reserved.