Answers for "convert capital letters to lowercase in shell script"

1

bash how to convert text to lowercase or uppercase

# Basic syntax:
tolower(string)
toupper(string)

# Example usage:
awk '{print tolower($0)}' input_file
# This prints every row ($0) converted to lowercase

awk '{print toupper($3)}' input_file
# This would print the third field ($3) converted to uppercase
Posted by: Guest on October-01-2020
0

convert capital letters to lowercase in shell script

x="HELLO"
echo $x  # HELLO

y=${x,,}
echo $y  # hello

z=${y^^}
echo $z  # HELLO
Posted by: Guest on March-15-2021

Code answers related to "convert capital letters to lowercase in shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language