Test komutlarında eq vs = vs == ne zaman kullanılır?


22

Ne zaman -eqvs =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:


24

Çü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.


3

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.  

2

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 ==


2

Tamsayı karşılaştırma =için dize karşılaştırma için sembol kullanılır -eq. Her ikisi ile birlikte testve birlikte çalışır [...]. Eğer kullanıyorsanız bashsö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* ]].

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.