set a = "abc jue"
set b = "sdc asj"
if ( "$a" == "$b" ) then
echo "match"
else
echo "unmatch"
endif
mais informações sobre o tcsh aqui
eu tentei assim:
#tcsh
set a="abc jue"
set b="sdc asj"
if($a == $b)then
echo "match"
else
echo"unmatch"
endif
este não está funcionando
set a = "abc jue"
set b = "sdc asj"
if ( "$a" == "$b" ) then
echo "match"
else
echo "unmatch"
endif
mais informações sobre o tcsh aqui
Tags tcsh