I have a hunch that I should probably be using ack or egrep instead, but what should I use to basically look for

<?

at the start of a file? I'm trying to find all files that contain the php short open tag since I migrated a bunch of legacy scripts to a relatively new server with the latest php 5.

I know the regex would probably be '/^<\?\n/'

link|improve this question

76% accept rate
1  
I think you've answered your own question – Scott Evernden Oct 7 '09 at 17:47
so? it doesn't work? – SilentGhost Oct 7 '09 at 17:47
are you just looking to find all php short tags? – macek Oct 7 '09 at 17:49
Looks like it doesn't, I'm pretty sure that there was some argument I was supposed to pass for grep to do full PCRE compatible, I think it just has basic support by default. – meder Oct 7 '09 at 17:49
@smotchkiss - pretty much heh.. migrated some old code to a new server and I don't want to enable short tags. – meder Oct 7 '09 at 17:49
show 2 more comments
feedback

5 Answers

up vote 4 down vote accepted

I RTFM and ended up using:

grep -RlIP '^<\?\n' *

the P argument enabled full perl compatible regexes.

link|improve this answer
mark this question as answered so we can get on with our lives ;) – Justin Johnson Oct 7 '09 at 18:01
"You can accept your own answer in 2 days." :( – meder Oct 7 '09 at 18:07
But in the meantime, you can get a Self-Learner badge for actually RTFM. clicks +1 :-P – Tomalak Oct 7 '09 at 18:28
feedback

If you're looking for all php short tags, use a negative lookahead

/<\?(?!php)/

will match <? but will not match <?php

[meder ~/project]$ grep -rP '<\?(?!php)' .
link|improve this answer
+1 for thinking of negative lookaheads and specifying -P too. – meder Oct 7 '09 at 20:12
feedback

if you worried about windows line endings, just add \r?.

link|improve this answer
feedback
grep '^<?$' filename

Don't know if that is showing up correctly. Should be

grep ' ^ < ? $ ' filename

link|improve this answer
feedback

Do you mean a literal "backslash n" or do you mean a newline?

For the former:

grep '^<?\\n' [files]

For the latter:

grep '^<?$' [files]

Note that grep will search all lines, so if you want to find matches just at the beginning of the file, you'll need to either filter each file down to its first line, or ask grep to print out line numbers and then only look for line-1 matches.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.