“Compare strings shell” Respostas de código

Compare strings shell

#!/bin/bash

VAR1="Linuxize"
VAR2="Linuxize"

if [ "$VAR1" = "$VAR2" ]; then
    echo "Strings are equal."
else
    echo "Strings are not equal."
fi
Angry Albatross

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
Abs Zarzis

Respostas semelhantes a “Compare strings shell”

Perguntas semelhantes a “Compare strings shell”

Mais respostas relacionadas para “Compare strings shell” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código