赞
踩
2021-01-21 18:53 丨o聽乄雨o丨 阅读(493) 评论(0) 编辑 收藏 举报
查看各个用户有没有crontab定时任务:
1 for u in `cat /etc/shadow | cut -d":" -f1`;do crontab -l -u $u;done
查看月/周/日定时任务文件夹:
1 ls /etc/cron.monthly 2 ls /etc/cron.weekly 3 ls /etc/cron.daily 4 ls /etc/cron.hourly
使用crontab查看当前用户:
1 crontab -l
查看crond定时任务:
1 ls /var/spool/cron
0、实例。
在/home/下面写了一个test.sh
#!/bin/sh
#echo hello > /home/hello.txt
echo "hello hello hello hello" >> /home/hello.txt #还是用这个比较好,追加输出到文件
然后在crontab -e中设置了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。