我想创建
一个每5秒运行一次脚本的cron作业.看到cron作业只允许分钟0-59的增量,依此类推.
我想创建另一个脚本,调用下面写的原始脚本.
#!/bin/bash
while true
do
# script in the same directory as this script. is this correct?
bash makemehappy.sh
sleep 1
done
我现在需要知道如何在每次启动计算机时运行此脚本,并且如果由于某种原因它没有运行则需要启动它.
我也知道每分钟运行这个脚本不是一件好事.