一.在系统中设定延迟任务要求如下
在系统中建立easylee用户,设定其密码为easylee 延迟任务由root用户建立 要求在5小时后备份系统中的用户信息文件到/backup中 确保延迟任务是使用非交互模式建立 确保系统中只有root用户和easylee用户可以执行延迟任务的设定
二.在系统中设定定时任务并优化定时任务
每天凌晨4点显示系统的根设备使用信息并以邮件的形式发送到root邮箱中 确保此任务为系统定时任务
bash
#!/bin/bash
at -m now+1min <<EOF
useradd easylee
passwd easylee
easylee
easylee
EOF
at -m now+5hours <<EOF
cat /etc/passwd > /backup
EOF
touch /etc/at.allow
echo easylee > /etc/at.allow
cd /etc/cron.d
echo "00 04 * * * root df -h"
chmod +x /mnt/test.sh