“Comment comparer un personnage à majuscules dans le script bash” Réponses codées

Bash convertit la chaîne en majuscules

var=hello #For Bash Version higher than 4.3.33 try these
echo ${var''} #Uppercase whole string
HELLO
echo ${var'} #Uppercase only first char of string
Hello
var2=BYE
echo ${var2,} #Lowercase whole string
bye
echo ${var2,,} #Lowercase only first char of string
bYE
echo $var | tr 'a-z' 'A-Z' #For lower versions of Bash just use tr command
HELLO
Armandres

Comment comparer un personnage à majuscules dans le script bash

echo "enter a char"
read c

if [[ $c == [A-Z] ]];
then
    echo "upper"
elif [[ $c == [a-z] ]];
then
    echo "lower"
else 
    echo "Digit or special symbols!"
fi
Old-fashioned Oryx

Réponses similaires à “Comment comparer un personnage à majuscules dans le script bash”

Questions similaires à “Comment comparer un personnage à majuscules dans le script bash”

Plus de réponses similaires à “Comment comparer un personnage à majuscules dans le script bash” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code