“Shell -eq” Respostas de código

-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

Respostas semelhantes a “Shell -eq”

Perguntas semelhantes a “Shell -eq”

Mais respostas relacionadas para “Shell -eq” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código