标签: 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