in my linux machine red-hat 5.1 - in ppp file - I have only the signature.pl string !!!

  • remark - third application write the signature.pl string in to ppp file

I set ppp file in $a param And compare $a with signature.pl

But as all see here this not equal - why ? or if I have empty space? How to solve this?

    [root@cm /var/tmp]# more /var/tmp/ppp
    signature.pl
    [root@cm /var/tmp]# a=` cat  /var/tmp/ppp `
    [root@cm /var/tmp]# echo $a
    signature.pl
    [root@cm /var/tmp]# [[ $a = signature.pl ]] && echo equel   (not print equel)

or

    [root@cm /var/tmp]# [[ $a == signature.pl ]] && echo equel   (not print equel)

diff example that works ! - from ksh shell (LINUX RED-HAT 5.1)

[u@h w]# echo signature.sh > file
[u@h w]# cat file
signature.sh
[u@h w]# a=`cat file`  
[u@h w]# echo $a
signature.sh
[u@h w]# [[ $a = signature.sh ]] && echo eq

 its print "eq"
link|improve this question

Your "real" example compares signature.sh and signature.pl...they aren't the same. – Mark Wagner Feb 5 at 3:16
this is a nother example (I fix it), on both they have the same ishhu – Eytan Feb 5 at 4:46
It works for me. What does this tell you? echo "${.sh.version}" What happens if you do: [[ $a = $a ]] && echo eq – Dennis Williamson Feb 5 at 18:26
yes Dennis now its work also for me I create new file in place of ppp , not clearly what was wrong , for for the first case the original question I still have problem - third application write the signature.pl string in to ppp file so I cant say what wrong here in the ppp file by vi I see only this string ( I update my results on the second case ) – Eytan Feb 5 at 21:09
feedback

1 Answer

up vote 3 down vote accepted

You need two equal signs:

[[ $a == signature.pl ]] && echo equal
link|improve this answer
I already tried it it also not work .....!!! – Eytan Feb 4 at 23:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.