开发者

Periodic Script- Daemon-

开发者 https://www.devze.com 2023-01-09 02:32 出处:网络
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

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 scr开发者_JAVA技巧ipt 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.


you need to set up a cron job.


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).

0

精彩评论

暂无评论...
验证码 换一张
取 消