Milloin minun tulisi käyttää -eq
vs =
vs ==
esim
[[ $num -eq 0 ]] [[ $num = "zzz" ]]
Olen havainnut mallin -eq
(ja -ne
jne.) numeroille ja =
merkkijonoille. Onko tähän syytä ja milloin minun pitäisi käyttää ==
Vastaus
Koska se on näiden operandien määritelmä. POSIX-testidokumentaation OPERANDS-osiosta :
s1 = s2
Totta, jos merkkijonot s1 ja s2 ovat identtiset; muuten väärä.
…
n1 -eq n2
Tosi, jos kokonaisluvut n1 ja n2 ovat algebrallisesti samat; muuten väärä.
==
ei määritä POSIX, se on bash
, johdettu kielestä ksh
. Älä käytä ==
, kun haluat siirtää. bash-ohjeista – Bashin ehdolliset lausekkeet :
string1 == string2
string1 = string2
Tosi, jos merkkijonot ovat samat. = tulisi käyttää POSIX-yhteensopivuuden testikomennon kanssa.
Vastaa
Tarkemmalla tavalla
Seuraavat jaksot voivat auttaa:
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.
Vastaa
Lähettäjä man test
:
-eq
jne.
Rele aritmeettisiin testeihin. Argumenttien on oltava kokonaan numeerisia (mahdollisesti negatiivisia) tai erityinen lauseke ”-l STRING”, joka arvioi STRING: n pituuden.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Joten =
ja ==
ovat synonyymejä
vastaus
Symbolia =
käytetään merkkijonojen vertailuun, kun taas -eq
kokonaislukujen vertailuun. Molemmat toimivat test
ja [...]
kanssa. Jos käytät bash
, sitten syntaksin kanssa [[...]]
voit käyttää merkkijonojen vertailuun myös ==
. Lisäksi kohdissa bash =
ja ==
ja toimii myös patterns
(kuten esimerkiksi [[ $x == y* ]]
.