echo “enter string”
read s
echo “Length of String:” ${#s}
r=$(echo “$s”|rev )
if [ “$s” == “$r” ]
then
echo “The String is Palindrome”
else
echo ” The String is not Palindrome”
fi
vowel_count=$(echo “$s” | grep -o “[aeiou]” | wc -l)
echo “Total number of vowels: $vowel_count”
[…] write a script to Displays the length of the string ,Checks if the string is a palindrome and Finds … […]