Kiedy używać -eq
, a =
, a ==
np
[[ $num -eq 0 ]] [[ $num = "zzz" ]]
Zauważyłem wzorzec używania -eq
(i -ne
itp.) dla liczb i =
dla ciągów. Czy jest tego powód i kiedy powinienem użyć ==
Odpowiedź
Ponieważ to jest definicja tych operandów. Z dokumentacji testowej POSIX, sekcja OPERANDS :
s1 = s2
Prawda, jeśli ciągi s1 i s2 są identyczne; w przeciwnym razie false.
…
n1 -eq n2
Prawda, jeśli liczby całkowite n1 i n2 są algebraicznie równe; w przeciwnym razie false.
==
nie jest zdefiniowane w standardzie POSIX, jest to rozszerzenie bash
, pochodzące z ksh
. Nie należy używać ==
, jeśli zależy Ci na przenośności. Z dokumentacji bash – wyrażenia warunkowe Bash :
string1 == string2
ciąg1 = ciąg2
Prawda, jeśli ciągi są równe. = powinno być używane z poleceniem test na zgodność z POSIX.
Odpowiedź
Bardziej szczegółowy sposób
Pomocne mogą być następujące sekwencje:
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.
Odpowiedź
Od man test
:
-eq
itp.
Przekaźnik do testów arytmetycznych. Argumenty muszą być w całości liczbowe (prawdopodobnie ujemne) lub być specjalnym wyrażeniem „-l ŁAŃCUCH”, którego wynikiem jest długość ŁAŃCUCHA.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Więc =
i ==
to synonimy
Odpowiedź
Symbol =
jest używany do porównywania ciągów, a -eq
do porównywania liczb całkowitych. Oba działają test
i [...]
. Jeśli używasz bash
, to ze składnią [[...]]
możesz również użyć ==
do porównania ciągów. Dodatkowo w bash =
i ==
z działa również dla patterns
(jak na przykład [[ $x == y* ]]
.