我的bash脚本生成一个日志文件。现在我想实现一些日志文件轮换。
假设它第一次被称为 somelog.log ,下次它被重命名为 somelog.log.1 和新的日志文件 somelog.log 。
第三次新日志 somelog.log ,但是 somelog.log.1 重命名为 somelog.log.2 ,旧的 somelog.log 重命名为 somelog.log.1 。
我最多可以授予例如5.
这是在(样本脚本),任何建议之前完成的。我很感激任何建议。
答案 0 :(得分:2)
试试这个bash函数,需要两个参数:
源:
function rotate () {
# minimum file size to rotate in MBi:
local MB="$1"
# filename to rotate (full path)
local F="$2"
local msize="$((1024*1024*${MB}))"
test -e "$F" || return 2
local D="$(dirname "$F")"
local E=${F##*.}
local B="$(basename "$F" ."$E")"
local s=
echo "rotate msize=$msize file=$F -> $D | $B | $E"
if [ "$(stat --printf %s "$F")" -ge $msize ] ; then
for i in 8 9 7 6 5 4 3 2 1 0; do
s="$D/$B-$i.$E"
test -e "$s" && mv $s "$D/$B-$((i+1)).$E"
# emtpy command is need to avoid exit iteration if test fails:
:;
done &&
mv $F $D/$B-0.$E
else
echo "rotate skip: $F < $msize, skip"
fi
return $?
}
答案 1 :(得分:0)
我刚刚为此制作了一个bash脚本: https://github.com/lingtalfi/logrotator
它基本上会检查您的日志文件的大小,如果它超过任意阈值,它会将日志文件复制到日志目录中。
它的cron友好,或者你也可以手动使用它。
典型的命令如下:
> ./logrotator.sh -f private/log -m {fileName}.{datetime}.txt -v