unix testa quando usar eq vs = vs == nos comandos de teste?

16

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. Existe uma razão para isso e quando devo usar ==

    
por Michael Durrant 16.11.2014 / 18:18

4 respostas

19

Porque essa é a definição para esses operandos. De documentação do teste POSIX, seção OPERANDS :

s1 = s2

True if the strings s1 and s2 are identical; otherwise, false.

...

n1 -eq n2

True if the integers n1 and n2 are algebraically equal; otherwise, false.

== não é definido por POSIX, é uma extensão de bash , derivada de ksh . Você não deve usar == quando quiser portabilidade. De documentação do bash - Expressões condicionais de Bash :

string1 == string2

string1 = string2

True if the strings are equal. ‘=’ should be used with the test command for POSIX conformance.

    
por 16.11.2014 / 18:31
2

De man test :

-eq , etc.

Relay to arithmetic tests. The arguments must be entirely numeric (possibly negative), or the special expression '-l STRING', which evaluates to the length of 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

    
por 16.11.2014 / 18:28
1

O símbolo = é usado para comparação de string enquanto -eq para comparação inteira. Ambos trabalham com test e com [...] . Se você estiver usando bash , com a sintaxe [[...]] , também poderá usar == para comparação de cadeias. Além disso, no bash = e == com [[...]] funciona também para patterns (como por exemplo [[ $x == y* ]] .

    
por 16.11.2014 / 18:30
1

De maneira mais elaborada
As sequências seguintes 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.  
    
por 16.11.2014 / 19:43

Tags