コマンド
perl -0777 -ne 'print "$1\n" if /START(.*?)END/s' filename.txt
参考
- -0777とは?: https://zat.ifdef.jp/html/2007/12-01.html
- -neとは?: https://www.tohoho-web.com/perl/app2.htm
-
-n: スクリプトを while (<>) { ... } で囲んで実行します。
-
-e: script script を perl のスクリプトとして実行します。例えば、「perl -e "print 5 * 3"」 は 5 * 3 の結果 15 を表示します。
-