Perl grep模式的开始到模式的END

时间:2013-05-30 06:48:01

标签: perl grep matching

嗨我有如下文件示例。使用perl我需要grep Feature A - Feature B

中的行
FeatureA:Y
Suporrted devices
:
:
:
:Suported device
FeatureB:Y
Suporrted devices
:
:
:
:Suported device
FeatureC:Y
:

1 个答案:

答案 0 :(得分:3)

perl -ne'print if /^FeatureA:/ .. /^FeatureB:/'

...然后,您可能只想要到FeatureB行,所以

perl -ne'print if ( /^FeatureA:/ .. /^FeatureB:/ ) =~ /^\d+\z/;'