Ne zaman -eq
vs =
vs kullanmalıyım==
Örneğin
[[ $num -eq 0 ]]
[[ $num = 'zzz' ]]
Sayıların ve dizgilerin kullanım şeklini -eq
(ve -ne
, vb.) Gözlemledim =
. Bunun bir nedeni var mı ve ne zaman kullanmalıyım==
Ne zaman -eq
vs =
vs kullanmalıyım==
Örneğin
[[ $num -eq 0 ]]
[[ $num = 'zzz' ]]
Sayıların ve dizgilerin kullanım şeklini -eq
(ve -ne
, vb.) Gözlemledim =
. Bunun bir nedeni var mı ve ne zaman kullanmalıyım==
Yanıtlar:
Çünkü bu operandların tanımı bu. Gönderen POSIX testi dokümantasyon, bölüm işlenenlerini :
s1 = s2
S1 ve s2 dizileri aynıysa doğrudur; Aksi takdirde, yanlış.
...
n1 -eq n2
N1 ve n2 tam sayılarının cebirsel olarak eşit olması durumunda geçerlidir; Aksi takdirde, yanlış.
==
POSIX tarafından tanımlanmadı bash
, türetilmiş bir uzantısı ksh
. ==
Taşınabilirlik istediğinizde kullanmamalısınız . Gönderen bash dokümantasyon - Bash Koşullu İfadeler :
string1 == string2
string1 = string2
Dizeler eşitse doğru. '=' POSIX uygunluğu için test komutuyla kullanılmalıdır.
Daha ayrıntılı bir şekilde
Aşağıdaki diziler yardımcı olabilir:
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.
Kimden man test
:
-eq
, vb.
Aritmetik testlere röle. Argümanlar tamamen sayısal (muhtemelen negatif) veya STRING'in uzunluğunu değerlendiren özel '-l STRING' ifadesi olmalıdır.
STRING1 = STRING2
True if the strings are equal.
STRING1 == STRING2
True if the strings are equal (synonym for =).
Yani =
ve ==
eş
Tamsayı karşılaştırma =
için dize karşılaştırma için sembol kullanılır -eq
. Her ikisi ile birlikte test
ve birlikte çalışır [...]
. Eğer kullanıyorsanız bash
sözdizimi ile o [[...]]
da kullanabilirsiniz ==
dize karşılaştırma için. Ayrıca bash =
ve ==
birlikte [[...]]
için işler patterns
örneğin çok ( [[ $x == y* ]]
.