Bash String to Lower or Upper Case
Jump to navigation
Jump to search
Internal
tr
awk
NOT TESTED
echo "${text}" | awk '{print tolower($0)}'
bash 4
sed
NOT TESTED
echo "${text}" | sed -e 's/\(.*\)/\L\1/'
NOT TESTED
echo "${text}" | awk '{print tolower($0)}'
NOT TESTED
echo "${text}" | sed -e 's/\(.*\)/\L\1/'