bash capitalize vowels using tr code example
Example: 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