나는 이것을 시도했습니다 :
#tcsh
set a="abc jue"
set b="sdc asj"
if($a == $b)then
echo "match"
else
echo"unmatch"
endif
이건 작동하지 않아
답변1
set a = "abc jue"
set b = "sdc asj"
if ( "$a" == "$b" ) then
echo "match"
else
echo "unmatch"
endif
tcsh에 대한 추가 정보여기