Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
DISPLAY_HEADER=1
 if [ "$1" != "test" -o "$1" != "test2" ]
    then
        if [ $DISPLAY_HEADER == 1 ]; then
                DISPLAY_HEADER=0
                echo "sdasa "
                echo $1
        fi
   fi

its display sdasa and -o is not working ?

what is wrong ?

share|improve this question
if i pass argument as test3 also its going inside loop – Tree Aug 9 '10 at 9:15
1  
what exactly do you expect -o to do in this context? – Hasturkun Aug 9 '10 at 9:25
i found that i have to use -a – Tree Aug 9 '10 at 10:54

1 Answer

up vote 2 down vote accepted

you can use case/esac

case "$1" in
  test|test2) 
    # do something
  *) 
    # set display data 
    ;;
esac
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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