test.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 の一致パターンに一致するとしますか? 「I」で試してみましたが、うまくいきませんでした。これは手っ取り早いはずです、みんなありがとう!