Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

compare strings shell

#!/bin/bash

read -p "Enter first string: " VAR1
read -p "Enter second string: " VAR2

if [[ "$VAR1" == "$VAR2" ]]; then
    echo "Strings are equal."
else
    echo "Strings are not equal."
fi
Source by linuxize.com #
 
PREVIOUS NEXT
Tagged: #compare #strings #shell
ADD COMMENT
Topic
Name
3+4 =