I have this console command to make substitute in all PHP files in the directory. Then it feeds the xgettext program.
sed "s/\/\/_/_/g" *.php | xgettext -o output.pot --language=PHP - --from-code=UTF-8
How to change it so that sed traverse all PHP files in all subdirectories?