空白行の後に続くファイルの後に、どうすればgrep (または同様の何か)<?phpできますか?
grep
<?php
私は成功せずに試しました:
grep -irn '(?<=.\r)\r<?php' *
grepが複数行をサポートしていないよ_Stack Overflow日本語サイト
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.
grepが複数行をサポートしていないよ
grepが複数行をサポートしていないようで、代わりにpcregrepを使用する必要があることをいくつかの投稿で読みました。空白行pcregrepの後はどうすればよいですか?<?php
pcregrep
以下はあなたが望むことをするはずです:
pcregrep -rinM '^\n<\?php' .