Is there a way in bash to convert a string into a lower case string?
For example, if I have:
a=\"Hi all\"
I want to convert it to:<
In bash 4 you can use typeset
Example:
A="HELLO WORLD" typeset -l A=$A