Search specific type of file in all folder
find ~ -type f -name '*pdf'
find ~ -iname '*pdf'
Search specific type of file in current folder
find . -iname '*pdf'
Make file executable
chmod +x file.xx'
Run PHPFixer on current folder
php-cs-fixer fix --diff --dry-run --stop-on-violation -v --using-cache=no
php-cs-fixer fix --stop-on-violation -v --using-cache=no
Make your git branch...