Linux crontab 查看所有用户的crontab任务

ぃ、小莉子 提交于 2019-11-30 00:47:37

查看所有用户的crontab任务 - mlzhu007的专栏 - CSDN博客

https://blog.csdn.net/mlzhu007/article/details/81662091

以root用户执行

cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {}

 

Linux crontab命令 | 菜鸟教程
https://www.runoob.com/linux/linux-comm-crontab.html

linux 查看crontab任务执行情况 - youzhouliu的博客 - CSDN博客
https://blog.csdn.net/youzhouliu/article/details/54311099

查看某个用户的crontab任务

crontab -l -u username
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!