Write a script to delete all vowels from particular string
Write a script to delete all vowels from particular string
SOLUTION....
#!/bin/bash
# Script to delete all vowels from a given string
echo "Enter a string:"
read str
# Remove vowels using sed (both lowercase and uppercase)
result=$(echo "$str" | sed 's/[aeiouAEIOU]//g')
echo "String without vowels: $result"