Bourne-预期二元运算符

时间:2019-10-05 14:35:21

标签: unix sh

需要检查是否存在$ found_files结果。但是,在第二行代码中出现了错误“期望二进制运算符”。请帮忙。

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 

0 个答案:

没有答案