Eu preciso comparar duas linhas diferentes com 2 ou mais que strings usando se comando

0

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

    
por arj 13.10.2016 / 10:51

1 resposta

0
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

    
por 13.10.2016 / 10:59

Tags