How can I grep
(or something similar) after files which has a blank line followed by <?php
?
I tried without success:
grep -irn '(?<=.\r)\r<?php' *
I read in some posts that grep doesn't seem to support multiline and pcregrep should be used instead.
How can I pcregrep
for <?php
after a blank line?