我想问一下这里是否有人知道如何在Linux中自动启动 .sh 程序。 这是因为我有一台运行的服务器,它在午夜运行到某一点然后停止。我希望有一个程序可以在每天的某个时间自动重启它。
答案 0 :(得分:0)
您可以使用cron守护程序自动运行脚本
首先,您必须将命令添加到cron
crontab -e //this will open a file with your default editor
//to this file add your command at last
命令语法:
* * * * * * /home/loc/shell.sh //runs every minuite
ex */45**** /home/loc/shllscript.sh // runs every 45 mins
答案 1 :(得分:0)
cron会做你需要做的事。
第一行将在每天2:30开始您的脚本。第二行将在12:00停止
30 2 * * * myscript.sh
00 12 * * * killall myscript.sh
答案 2 :(得分:0)
你也可以参考" at",它可以在特定时间段运行工作