Необходимо проверить, есть ли результат $ found_files. Тем не менее, я получил ошибку «ожидается двоичный оператор» во 2-й строке кода. Пожалуйста помоги.
found_files=`find . -name "*.php" -printf '%f '` # find all php files in the current folder
if [ -z $found_files ] ;
then
echo "No php file found."
else
echo -e "$found_files"
fi