如何在电脑重启后 10 分钟内让我的 shell 运行?
How to make my shell run in 10 minutes after the pc reboot?
我可以在启动时使用 /etc/init.d/start_app.
使我的 shell 脚本 运行
我想在电脑每次重新启动后的 10 分钟内使我的 shell 脚本 运行?
如何用crontab命令表达我的意思?
电脑重启后10分钟?
您可以通过
@reboot sleep 600 && my_script.sh
我可以在启动时使用 /etc/init.d/start_app.
使我的 shell 脚本 运行
我想在电脑每次重新启动后的 10 分钟内使我的 shell 脚本 运行?
如何用crontab命令表达我的意思?
电脑重启后10分钟?
您可以通过
@reboot sleep 600 && my_script.sh