Answers for "bash capitalize vowels using tr"

1

bash capitalize vowels using tr

# capitalize a vowels in raw string 'hello' 
echo abc | tr aeou AEOU
hEllO
# capitalize vowels in text from file 'hello_world.text' 
tr aeou AEOU < hello_world.text
hEllO wOrld
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language