我正在尝试在 pattern1(固定)和 pattern2(这可以是 p2-1/p2-2)之间提取文本。你能告诉我如何在一个命令中实现这一点吗?
文件以or开头start
和结尾end
close
File1:
======
junktest
data
start
stackoverflow
sed
close
File2:
======
data2
start
stackoverflow
end
我可以从 File1 中提取文本
sed -n "/start/,/close/p"
并从 File2 与
sed -n "/start/,/end/p"
我需要一个 sed 命令来实现这两者.. 像:
sed -n "/start/, /close or end /p"