Când ar trebui să folosesc -eq
vs =
vs ==
de ex
[[ $num -eq 0 ]] [[ $num = "zzz" ]]
Am observat un model de utilizare a -eq
(și -ne
etc.) pentru numere și =
pentru șiruri. Există un motiv pentru acest lucru și când ar trebui să folosesc ==
Răspuns
Pentru că aceasta este definiția pentru acei operanzi. Din Documentația de testare POSIX, secțiunea OPERANDS :
s1 = s2
Adevărat dacă șirurile s1 și s2 sunt identice; în caz contrar, fals.
…
n1 -eq n2
Adevărat dacă numerele întregi n1 și n2 sunt egale algebric; în caz contrar, fals.
==
nu este definit de POSIX, este o extensie a bash
, derivat din ksh
. Nu ar trebui să utilizați ==
atunci când doriți portabilitate. Din documentație bash – Bash Expresii condiționale :
string1 == string2
string1 = string2
Adevărat dacă șirurile sunt egale. = trebuie utilizat împreună cu comanda de testare pentru conformitatea POSIX.
Răspuns
Într-un mod mai elaborat
Următoarele secvențe vă pot ajuta:
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.
Răspuns
De la man test
:
-eq
etc.
Releu la teste aritmetice. Argumentele trebuie să fie în întregime numerice (posibil negative) sau expresia specială `-l STRING”, care se evaluează la lungimea STRING.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Deci =
și ==
sunt sinonime
Răspuns
Simbolul =
este utilizat pentru compararea șirurilor, în timp ce -eq
pentru compararea numărului întreg. Ambele funcționează cu test
și cu [...]
. Dacă utilizați bash
, atunci cu sintaxa [[...]]
puteți utiliza și ==
pentru compararea șirurilor. În plus, în bash =
și ==
cu funcționează și pentru patterns
(ca de exemplu [[ $x == y* ]]
.