我试图在启动时在我的 OpenBSD 机器上运行 .sh 脚本。
我已经使用命令使脚本可执行chmod +x
。我还通过条目阅读将脚本添加到 cron
@reboot sh /dir/myscript.sh
(无引号)以及通过和条目添加脚本/etc/rc.d/rc.local
并使其可执行,但无济于事。
该脚本是一个基本echo "hello"
命令。有小费吗?
注意:我将restart编辑为reboot,因为我记错了我输入的内容
答案1
要通过 crontab 在启动时运行命令,您应该使用@reboot
字符串:
参见info crontab
或man 5 crontab
。
string meaning
------ -------
@reboot Run once, at startup.