测试.txt
Welcome notice
------------------------
Hello there, welcome! Foo
hello
world
Bar
Yes!
Foo
How are ya?!
Bar
Have a great day!
sed - 抓取文本
$ sed -n '/Foo/,/Bar/p' test.txt
输出
Hello there, welcome! Foo
hello
world
Bar
Foo
How are ya?!
Bar
如何使这个不区分大小写?例如,说 'FOO' 或 'bAr' 将匹配 sed 的匹配模式?我试过用“我”,没有运气。这应该是一个快速的,谢谢大家!