设置时间自动运行并关闭Pi4中Qt程序

Set time to automatically run and close the program Qt in Pi4

出于某种原因,我需要在早上 7 点到晚上 10 点之间在我的 Pi4 上 运行 Qt 程序,其余时间程序关闭。这需要每天自动发生。我试过了,但没有用,程序无法按我的意愿自动打开和关闭。谁能帮帮我?

您可以使用 crontab 运行 一些脚本在早上 7 点启动程序,然后 运行 另一个脚本在晚上 10 点关闭程序。

比如在crontab中加入下面的代码,就可以运行每天停止一些程序

0 7 * * * start.sh
0 22 * * * stop.sh

crontab tutorial