“shell -eq” Código de respuesta

-EQ shell script

a=30
b=20
if [[ $a -eq $b ]]; then
    echo "Match"
else
    echo "No Match"
fi

Output:No Match
=================================================
a=John
b=George
if [[ $a -eq $b ]]; then
    echo "Match"
else
    echo "No Match"
fi

Output:Match
which is wrong

Conclusion:
-eq is for numerical comparison and == is for string comparison
rachelgreen

shell -eq

-eq is for numerical comparison and == is for string comparison
a=30
b=20
if [[ $a -eq $b ]]; then
    echo "Match"
else
    echo "No Match"
fi

Output:No Match
=================================================
a=John
b=George
if [[ $a -eq $b ]]; then
    echo "Match"
else
    echo "No Match"
fi

Output:Match
which is wrong
rachelgreen

Respuestas similares a “shell -eq”

Preguntas similares a “shell -eq”

Más respuestas relacionadas con “shell -eq” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código