How to convert a string to lower case in Bash?
Asked 07 September, 2021
Viewed 906 times
  • 58
Votes

Is there a way in to convert a string into a lower case string?

For example, if I have:

a="Hi all"

I want to convert it to:

"hi all"

21 Answer