SyntaxFix
Write A Post
Hire A Developer
Questions
In Bash, you can use parameter expansion to modify a string to all lower-/upper-case:
var1=TesT var2=tEst echo ${var1,,} ${var2,,} echo ${var1^^} ${var2^^}