将历史记录时间戳替换为标准时间

标签: 历史 history 记录 时间戳
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。 http://cqfish.blog.51cto.com/622299/1064930
for file_name in $history_dir/*
       do
        then
               sed -i "s/$time/$date_time/g" $file_name
done
<div sans="" serif',="" tahoma,="" verdana,="" helvetica;="" font-size:="" 12px;="" line-height:="" 18px;="" "="" style="padding: 0px; margin: 5px 0px;"> 替换前日志格式如下:
<div sans="" serif',="" tahoma,="" verdana,="" helvetica;="" font-size:="" 12px;="" line-height:="" 18px;="" "="" style="padding: 0px; margin: 5px 0px;">
  #1353398866
  ls /root/
  #1353398881
  history -w
替换后日志格式如下:
  2012-11-20 16:07:46
  ls /root/
  2012-11-20 16:08:01
  history -w


你可能感兴趣的:(超链接,history,文章,记录,历史)