Kiedy powinienem używać -eq
vs =
vs==
na przykład
[[ $num -eq 0 ]]
[[ $num = 'zzz' ]]
Zauważyłem wzorzec używania -eq
(i -ne
itp.) Liczb i =
ciągów znaków. Czy jest ku temu powód i kiedy powinienem go użyć==
Kiedy powinienem używać -eq
vs =
vs==
na przykład
[[ $num -eq 0 ]]
[[ $num = 'zzz' ]]
Zauważyłem wzorzec używania -eq
(i -ne
itp.) Liczb i =
ciągów znaków. Czy jest ku temu powód i kiedy powinienem go użyć==
Odpowiedzi:
Ponieważ taka jest definicja tych operandów. Z dokumentacji testu POSIX, sekcja OPERANDS :
s1 = s2
Prawda, jeśli ciągi s1 i s2 są identyczne; w przeciwnym razie fałszywe.
...
n1 -eq n2
Prawda, jeśli liczby całkowite n1 i n2 są algebraicznie równe; w przeciwnym razie fałszywe.
==
nie jest zdefiniowany przez POSIX, jest rozszerzeniem bash
, wywodzącym się z ksh
. Nie powinieneś używać, ==
gdy chcesz mieć przenośność. Z dokumentacji bash - Wyrażenia warunkowe Bash :
string1 == string2
string1 = string2
Prawda, jeśli ciągi są równe. '=' powinno być użyte z poleceniem testowym dla zgodności z POSIX.
W bardziej skomplikowany 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.
Od man test
:
-eq
itd.
Przekaźnik do testów arytmetycznych. Argumenty muszą być całkowicie numeryczne (być może ujemne) lub specjalne wyrażenie `-l STRING ', które określa długość STRING.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Więc =
i ==
są synonimami