嗨我有如下文件示例。使用perl我需要grep Feature A - Feature B
中的行FeatureA:Y
Suporrted devices
:
:
:
:Suported device
FeatureB:Y
Suporrted devices
:
:
:
:Suported device
FeatureC:Y
:
答案 0 :(得分:3)
perl -ne'print if /^FeatureA:/ .. /^FeatureB:/'
...然后,您可能只想要行到FeatureB行,所以
perl -ne'print if ( /^FeatureA:/ .. /^FeatureB:/ ) =~ /^\d+\z/;'