Bash Script Compare String Code Example


Example 1: bash scripting string comparison

#!/bin/bash  VAR1="Linuxize" VAR2="Linuxize"  if [ "$VAR1" = "$VAR2" ]; then     echo "Strings are equal." else     echo "Strings are not equal." fi

Example 2: test string equality bash

strval1="Ubuntu" strval2="Windows"  #Check equality two string variables  if [ $strval1 == $strval2 ]; then   echo "Strings are equal" else   echo "Strings are not equal" fi  #Check equality of a variable with a string value  if [ $strval1 == "Ubuntu" ]; then   echo "Linux operating system" else   echo "Windows operating system" fi

Example 3: bash compare two strings

if [ "$s1" == "$s2" ] then 	stuff fi

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?