유닉스 테스트 테스트 명령에서 eq vs = vs ==를 사용할 때?

-eq vs = vs ==

[[ $num -eq 0 ]] [[ $num = "zzz" ]] 

-eq (및 -ne 등)은 숫자이고 =는 문자열입니다. 그 이유가 무엇이며 언제 ==

Answer

이것이 피연산자에 대한 정의이기 때문입니다. POSIX 테스트 문서, OPERANDS 섹션 :

s1 = s2

문자열 s1과 s2가 동일하면 참입니다. 그렇지 않으면 거짓입니다.

n1 -eq n2

정수 n1과 n2가 대수적으로 같으면 참; 그렇지 않으면 false입니다.

==는 POSIX에 의해 정의되지 않으며

, ksh에서 파생되었습니다. 휴대 성을 원할 때 ==를 사용해서는 안됩니다. bash 문서-Bash 조건식 :

string1 == string2

string1 = string2

문자열이 같으면 참. =는 POSIX 적합성 테스트 명령과 함께 사용해야합니다.

답변

좀 더 정교하게
다음 시퀀스가 도움이 될 수 있습니다.

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. 

답변

:

-eq

릴레이 산술 테스트에. 인수는 전체가 숫자 (음수 일 수 있음)이거나 STRING 길이로 평가되는 특수 표현식`-l STRING “이어야합니다.

STRING1 = STRING2

 True if the strings are equal. 

STRING1 == STRING2

 True if the strings are equal (synonym for =). 

따라서 ===는 동의어입니다.

답변

기호 =는 문자열 비교에 사용되는 반면 -eq는 정수 비교에 사용됩니다. 둘 다 작동합니다. test[...]. bash를 사용하는 경우 [[...]] 문자열 비교에 ==를 사용할 수도 있습니다. 또한 bash = 및 ( patterns에서도 작동합니다 (예 : [[ $x == y* ]]).

답글 남기기

이메일 주소를 발행하지 않을 것입니다. 필수 항목은 *(으)로 표시합니다