Skip to main content
structure + error in code fixed = overall better for readers now
Source Link

Here is Simple Examplea simple example which Work For Meworks for me:

temp1=true
temp2=false

if [ $temp1"$temp1" = true ] || [ $temp"$temp2" = true ]
   then
      echo "Do Something.something." 
 else
     echo "Do something else"else."
fi

Here is Simple Example which Work For Me

temp1=true
temp2=false

if [ $temp1 = true ] || [ $temp = true ]
   then
      echo "Do Something.." 
 else
     echo "Do something else"
fi

Here is a simple example which works for me:

temp1=true
temp2=false

if [ "$temp1" = true ] || [ "$temp2" = true ]
then
    echo "Do something." 
else
    echo "Do something else."
fi
added code template
Source Link

Here is Simple Example which Work For Me temp1=true temp2=false

if [ $temp1 = true ] || [ $temp = true ] then echo "Do Something.." else echo "Do something else" fi

temp1=true
temp2=false

if [ $temp1 = true ] || [ $temp = true ]
   then
      echo "Do Something.." 
 else
     echo "Do something else"
fi

Here is Simple Example which Work For Me temp1=true temp2=false

if [ $temp1 = true ] || [ $temp = true ] then echo "Do Something.." else echo "Do something else" fi

Here is Simple Example which Work For Me

temp1=true
temp2=false

if [ $temp1 = true ] || [ $temp = true ]
   then
      echo "Do Something.." 
 else
     echo "Do something else"
fi
Source Link

Here is Simple Example which Work For Me temp1=true temp2=false

if [ $temp1 = true ] || [ $temp = true ] then echo "Do Something.." else echo "Do something else" fi