Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
多数のテキスト ファイルがあり、この文字列 END_PAGEREFS の後にあるものはすべて削除し、BEGIN_PAGEREFS の前にあるものはすべて削除したいという問題があります。
ありがとう
これには sed を使用できます。
sed -i -n '/BEGIN_PAGEREFS/,/END_PAGEREFS/p' yourfile
このコマンドをループに挿入して、すべてのファイルを処理できます