How to find files which contains a certain string

  • Thread starter Thread starter Hubert Rétif
  • Start date Start date
H

Hubert Rétif

Hi,

I have some PHP files which begin with <?php and others beginning with only
<?

I want to collect all filenames (also in subdirectories) beginning with only
<?

Can I do this with the file explorer? How? Or should I install a third party
programm? Which one?

Thanks a lot for your answers
hr
 
Hubert Rétif said:
Hi,

I have some PHP files which begin with <?php and others beginning with
only <?

I want to collect all filenames (also in subdirectories) beginning with
only <?

Can I do this with the file explorer? How? Or should I install a third
party programm? Which one?

Thanks a lot for your answers
hr

It is unclear from your post whether you're looking for files whose *name*
starts with "<?php" or whose *contents* starts with "<?php". There is a big
difference between the two!
 
It is unclear from your post whether you're looking for files whose *name*
starts with "<?php" or whose *contents* starts with "<?php".
I am looking for files whose *contents* starts with "<?" but not "<?php".
 
Back
Top