我在我的 Solaris 机器上构建了新脚本
脚本名称:send_brd_msg.sh(该脚本位于/var目录下
我想通过 crontab 每天晚上 12:00 激活此脚本
请指教如何在我的 crontab 中写入内容以便每晚 12:00 运行 /var/send_brd_msg.sh
我的计划任务:
crontab -l
#ident "@(#)root 1.21 04/03/23 SMI"
#
# The root crontab should be used to perform accounting data collection.
#
#
10 3 * * * /usr/sbin/logdm
15 3 * * 0 /usr/lib/fs/nfs/nfrind
30 3 * * * [ -x /usr/lib/gs/gred_clean ] && /usr/lib/gs/gin_clean
答案1
晚上 12 点是 24 小时制时钟的 00:00。
因此,你可以添加如下一行:
0 0 * * * /var/send_brd_msg.sh
到你的 crontab。