我想在 UNIX 中使用 shell 脚本将超过 1 天的日志移动到存档

我想在 UNIX 中使用 shell 脚本将超过 1 天的日志移动到存档
cd /home/usr/bin/logs
find . -mtime +1 -print | sed -n -e '/\.\/arc/d' -e 's/.*\//' -e '/*.[0-9]$/p' |  while read i
do
if [-f arc/$i]
then
cat $i >> arc/$i
rm $i
else
mv $i arc
fi
done

日志文件有多种格式,例如“valid.app5s.log.1019、app5s.gf3sts.1019、valid.app5s.gf3log.1019、app5s.gf3log.1019、app5s.gf1sts.1019、valid.app5s.gf1log .1019,app5s.sts.1019”。

但我无法做到这一点。请帮我解决问题..

答案1

除非我错过了你可以使用的东西find

find . -maxdepth 1 -mtime +1 -type f -exec mv {} arc/ \;

这将在当前目录中找到任何早于 1 天的文件并将其移动到“arc”目录。

答案2

在 find 命令中使用 maxdepth

cd /home/usr/bin/logs
find . -maxdepth 1 -mtime +1 -print |  while read i
do
    if [ -f arc/$i ]
    then
        cat $i >> arc/$i
        rm $i
    else
        mv $i arc
    fi
done

相关内容