perl -pi -w -e 's/search/replace/g;' *.php -e means execute the following line of code.
-i means edit in-place
-w write warnings
-p loop
perl -pi -w -e 's/search/replace/g;' *.php -e means execute the following line of code.
-i means edit in-place
-w write warnings
-p loop