Quando devo usar -eq
vs =
vs ==
por exemplo
[[ $num -eq 0 ]] [[ $num = "zzz" ]]
Eu observei um padrão de uso de -eq
(e -ne
, etc.) para números e =
para strings. Há um motivo para isso e quando devo usar ==
Resposta
Porque essa é a definição para esses operandos. Da documentação de teste POSIX, seção OPERANDOS :
s1 = s2
Verdadeiro se as strings s1 e s2 forem idênticas; caso contrário, falso.
…
n1 -eq n2
Verdadeiro se os inteiros n1 e n2 forem algebricamente iguais; caso contrário, false.
==
não é definido por POSIX, é uma extensão de bash
, derivado de ksh
. Você não deve usar ==
quando quiser portabilidade. Da documentação do bash – Expressões condicionais do Bash :
string1 == string2
string1 = string2
Verdadeiro se as strings forem iguais. = deve ser usado com o comando de teste para conformidade POSIX.
Resposta
De uma forma mais elaborada
As seguintes sequências podem ajudar:
gnu:~$ [ sam -eq sam ] bash: [: sam: integer expression expected gnu:~$ echo "Exit status of \"[ sam -eq sam ]\" is $?." Exit status of "[ sam -eq sam ]" is 2.
gnu:~$ [ 5 -eq 5 ] gnu:~$ echo "Exit status of \"[ 5 -eq 5 ]\" is $?." Exit status of "[ 5 -eq 5 ]" is 0.
gnu:~$ [ 5 = 5 ] gnu:~$ echo "Exit status of \"[ 5 = 5 ]\" is $?." Exit status of "[ 5 = 5 ]" is 0.
gnu:~$ [ sam = sam ] gnu:~$ echo "Exit status of \"[ sam = sam ]\" is $?." Exit status of "[ sam = sam ]" is 0.
gnu:~$ [ 5 == 5 ] gnu:~$ echo "Exit status of \"[ 5 == 5 ]\" is $?." Exit status of "[ 5 == 5 ]" is 0.
gnu:~$ [ sam == sam ] gnu:~$ echo "Exit status of \"[ sam == sam ]\" is $?." Exit status of "[ sam == sam ]" is 0.
gnu:~$ (( 5 == 5 )) gnu:~$ echo "Exit status of \"(( 5 == 5 ))\" is $?." Exit status of "(( 5 == 5 ))" is 0.
gnu:~$ (( sam == sam )) gnu:~$ echo "Exit status of \"(( sam == sam ))\" is $?." Exit status of "(( sam == sam ))" is 0.
gnu:~$ ( sam = sam ) The program "sam" is currently not installed. You can install it by typing: sudo apt-get install simon gnu:~$ echo "Exit status of \"( sam = sam )\" is $?." Exit status of "( sam = sam )" is 127.
gnu:~$ ( 5 = 5 ) 5: command not found gnu:~$ echo "Exit status of \"( 5 = 5 )\" is $?." Exit status of "( 5 = 5 )" is 127.
gnu:~$ ( sam == sam ) The program "sam" is currently not installed. You can install it by typing: sudo apt-get install simon gnu:~$ echo "Exit status of \"( sam == sam )\" is $?." Exit status of "( sam == sam )" is 127.
gnu:~$ ( 5 == 5 ) 5: command not found gnu:~$ echo "Exit status of \"( 5 == 5 )\" is $?." Exit status of "( 5 == 5 )" is 127.
Resposta
De man test
:
-eq
, etc.
Relé para testes aritméticos. Os argumentos devem ser totalmente numéricos (possivelmente negativos) ou a expressão especial `-l STRING”, que avalia o comprimento de STRING.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Portanto, =
e ==
são sinônimos
Resposta
O símbolo =
é usado para comparação de strings, enquanto -eq
para comparação de inteiros. Ambos funcionam com test
e com [...]
. Se você estiver usando bash
, então com sintaxe [[...]]
você também pode usar ==
para comparação de strings. Além disso, em bash =
e ==
com também funciona para patterns
(como por exemplo [[ $x == y* ]]
.