ここのチュートリアルに従っています: http://bash.cyberciti.biz/guide/If..else..fi#Number_Testing_Script
私のスクリプトは次のようになります。
lines=`wc -l $var/customize/script.php`
if test $lines -le 10
then
echo "script has less than 10 lines"
else
echo "script has more than 10 lines"
fi
しかし、私の出力は次のようになります:
./boot.sh: line 33: test: too many arguments
script has more than 10 lines
引数が多すぎると表示されるのはなぜですか? 私のスクリプトがチュートリアルのスクリプトとどのように違うのかわかりません。