Linux provides a lot of interesting command-line tools that we can use when working with PHP projects. In this post we give you some useful commands:

Find all PHP files in the current directory

$ find . -type f -name "*.php"
./index.php
./vendor/autoload.php

Подробнее: Полезные комманды Linux для PHP