Linux-定时器任务
Posted codessuperman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-定时器任务相关的知识,希望对你有一定的参考价值。
定时任务 --crontab(定时重启/日志分割/文本文件的压缩比1:100)
# m h dom mon dow user command
m:分钟 h:小时 dom:天 mon:月 dow:星期几 user:用户 command:命令
tail -f /tmp/log.txt //查看最新日志,并持续跟踪
Linux查看年月日
#!/bin/sh
curdate=`date "+%Y%m%d"`
echo $curdate
cp /tmp/log.txt /tmp/log$curdate.txt
echo "" > /tmp/log.txt
#TODO 压缩、删除
文件分割:
split -l 100 log.txt
------------find命令 快速查找文件的对应目录
以上是关于Linux-定时器任务的主要内容,如果未能解决你的问题,请参考以下文章