J'ai essayé de comprendre ce qui ne va pas, mais je ne peux tout simplement pas le comprendre ..
C'est la partie qui semble recevoir une erreur.
elif [ $operation = "man" ]; then
if [ $aug1 = "add" ]; then # <- Line 75
echo "Man Page for: add"
echo ""
echo "Syntax: add [number 1] [number 2]"
echo ""
echo "Description:"
echo "Add two different numbers together."
echo ""
echo "Info:"
echo "Added in v1.0"
echo ""
elif [ -z $aug1 ]; then
echo "Please specify a command to read the man page."
else
echo "There is no manual page for that command."
fi
Je reçois cette erreur:
calc_1.2: line 75: [: =: unary operator expected
if
déclaration à la ligne 75 a besoin d'unfi
.