📜  找不到 crontab 命令 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:38.299000             🧑  作者: Mango

代码示例1
## Cron often clears the whole $PATH environment
## So the shell doesn't know where to look for the command

## You should set the $PATH enviorment in crontab:
PATH="/usr/local/bin:/usr/bin:/bin"
0 1 * * * db2 connect to myDB2

## Or add the $PATH enviorment in your script:
#!/bin/bash
PATH="/usr/local/bin:/usr/bin:/bin"

# rest of script follows