我使用命令./abc.sh abc_config
执行sh文件
我们如何通过cron完成这项工作?对于我通常做的单一命令
5 0 * * * /test/abc.sh
但对于./abc.sh abc_config
我有点困惑
一个选项可能是将脚本及其参数存储在另一个脚本中并运行它?
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