首页 > 代码库 > shell 之 截取某段文件字

shell 之 截取某段文件字

#!/bin/bash


sed -n ‘/01/,/02/p‘y.log>01.txt


sed -n ‘/02/,/03/p‘ y.log >02.txt


sed -n ‘/03/,/04/p‘ y.log >03.txt

#截取y.log文件中 从文字 01 到02 之间的内容到文件01.txt中。下同。这个不是按行截取,而是跟据字的内容来截取。

本文出自 “星河码头” 博客,请务必保留此出处http://liy607.blog.51cto.com/2892862/1431288