个人用户的 crontab 条目
在我的 RHEL5 机器上,到目前为止,我已经通过将条目放入 /etc/crontab 文件中来设置 cron 作业,出于安全原因,该文件只能由 root 编辑。
还有其他方法可以为个人用户设置 cron 作业吗?最好,我希望每个用户都有自己的 cron 文件,他们可以随意编辑该文件,而无需 root 权限。
这可以做到吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用户可以使用 crontab -e 创建和编辑自己的 crontab。他们可以使用 crontab -l 查看他们的 crontab。他们可以使用 crontab -r 删除 crontab。
man -s1 crontab
了解更多信息。Users can create and edit their own crontabs with
crontab -e
. They can view their crontab withcrontab -l
. They can remove their crontab withcrontab -r
.man -s1 crontab
for more information.crontab 条目仅是特定于用户的。用户可以在 crontab 中创建/安排自己的作业,或者您可以说用户有权访问的所有文件
http://www.weblogitech.com/2015/12/what-is-cron-tab-in-linux-and-unix.html
crontab entry is user specific only. a user can make/schedule its own jobs in crontab or you can say that all files on which user is having access
http://www.weblogitech.com/2015/12/what-is-cron-tab-in-linux-and-unix.html