Bash To Upper/Lower Casecd ../ February 12, 2024 One-minute read linux-command • bashBash To Upper/Lower Case Link to headingecho "A" | awk '{print tolower($0)}' echo "a" | awk '{print toupper($0)}'