每分钟向文本追加内容
1,编写Shell脚本 test.sh 并且放到 root目录下
文本内容为
/bin/echo "你好" >> /root/test.txt
2,编辑定时任务
crontab -e
*/1 * * * * /root/test.sh
3,查看定时任务 crontab -l
4,删除定时任务 crontab -r
注意 若文件 test.sh 没有权限
更改文件权限
chmod 777 test.sh
每分钟向文本追加内容
1,编写Shell脚本 test.sh 并且放到 root目录下
文本内容为
/bin/echo "你好" >> /root/test.txt
2,编辑定时任务
crontab -e
*/1 * * * * /root/test.sh
3,查看定时任务 crontab -l
4,删除定时任务 crontab -r
注意 若文件 test.sh 没有权限
更改文件权限
chmod 777 test.sh