sed命令截取指定日期内日志文件的方法,sed命令用法例子。
文件内容格式:
*****
系统信息:Accessing Time:2013-03-22 09:24:12
系统信息:WebLogic WebService Accessing Success:DealFlowSub ()
*******
系统信息:Accessing Time:2013-03-22 09:34:10
系统信息:WebLogic WebService Accessing Success:DealFlowSub ()
需求:截取特定时间的内容,内容行数不确定。
shell语句:
Linux学习,http:// linux.it.net.cn
sed -n '/Accessing Time:2013-03-18/,/Accessing Time:2013-03-19/'p nohup.out20130322 >18.txt
sed -n '/03\/Apr\/2018:10/,/03\/Apr\/2018:14:56:12/'p /home/data/logs/abc.com.log
转载于:https://blog.51cto.com/wangxiaoyong/1760507