博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
log4j日志归档
阅读量:5835 次
发布时间:2019-06-18

本文共 596 字,大约阅读时间需要 1 分钟。

#!/bin/sh

logs_dir=/oracle/weblogic/user_projects/domains/webdomain/log4j

cd ${logs_dir}
for file in `ls *.log.*`
do
app=${file%%.log.20*}
dt=${file##*.log.}
dy=${dt:0:4}
dm=${dt:5:2}
dd=${dt:8:2}
target_dir=${logs_dir}/${app}/${dy}/${dm}/${dd}/
if [ ! -d ${target_dir} ];
then
/bin/mkdir -p ${target_dir}
#echo $target_dir' is not exists'
fi
#echo ${file}
sfile=${logs_dir}/${file}
#echo ${sfile}
/bin/mv ${sfile} ${target_dir}
#echo 'sfile='${sfile}' target_dir='${target_dir}
done

posted on
2013-03-27 16:49 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/jony413/archive/2013/03/27/2984942.html

你可能感兴趣的文章
codevs——2822 爱在心中
查看>>
Python基础班---第一部分(基础)---Python基础知识---认识Python
查看>>
JAVA MAC 配置
查看>>
1134 最长上升子序列 (序列型 DP)
查看>>
js冒泡排序
查看>>
第一次作业 4班卢炳武
查看>>
const int * 与 int *const
查看>>
抽象类的调用
查看>>
libjpeg.a exists or that its path is correct
查看>>
使用硬盘,安装双系统,Win7+CentOS
查看>>
Javascript学习总结
查看>>
JS 操作Excel格式
查看>>
php 用正则替换中文字符一系列问题解决
查看>>
ActiveMQ应用笔记一:基本概念&安装
查看>>
SAE+Java+jetty
查看>>
大话数据结构之四(串)
查看>>
加热炉简是新来的整个系统的板
查看>>
Mockito使用注意事项
查看>>
[LeetCode] Palindrome Linked List 回文链表
查看>>
UVA - 825Walking on the Safe Side(dp)
查看>>