周期性脚本-守护进程-

发布于 2024-09-11 12:11:42 字数 209 浏览 7 评论 0原文

ux 和我每天都需要删除一个特定的文件。 然后我需要使用简单的命令执行 shell 脚本或其他操作,例如

# rm <filename>

但我需要将此脚本添加到 init,或在守护程序中转换此脚本以授予每天 20:00,此脚本运行并删除文件。

我想上面是程序,但我可能是错的。在这种情况下你能指导我吗?多谢。

ux and i need delete a specific file every day.
then I need to do a shell script or something else with a simple command for example

# rm <filename>

But i need add this script to init, or convert this script in daemon TO GRANT that every day at 20:00, this script run and delete the file.

I guess that the above is the procedure, but I can be wrong. Can you please guide me in this situation. Thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

來不及說愛妳 2024-09-18 12:11:42

您需要设置一个 cron 作业

you need to set up a cron job.

节枝 2024-09-18 12:11:42

您正在寻找man crontab

您正在查找的 crontab 行将如下所示:

0 20 * * * rm <filename>

您可以将此行作为其需要运行的用户(例如 root)的 crontab 中的条目。

You are looking for man crontab.

The crontab line you are looking for will look like this:

0 20 * * * rm <filename>

You would put this line as an entry in the crontab of the user it needs to run as (e.g. root).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文