周期性脚本-守护进程-
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置一个 cron 作业。
you need to set up a cron job.
您正在寻找
man crontab
。您正在查找的 crontab 行将如下所示:
您可以将此行作为其需要运行的用户(例如 root)的 crontab 中的条目。
You are looking for
man crontab
.The crontab line you are looking for will look like this:
You would put this line as an entry in the crontab of the user it needs to run as (e.g. root).