If we want to find specific text, e.g. “Ania” only in PHP files:
find . -name "*.php" -print0 | xargs -0 grep "Ania"
WordPress, Linux - scripting, coding and fixing.
WordPress, Linux - scripting, coding and fixing.
If we want to find specific text, e.g. “Ania” only in PHP files:
find . -name "*.php" -print0 | xargs -0 grep "Ania"