Horje
convert capital letters to lowercase in shell script Code Example
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
convert capital letters to lowercase in shell script
x="HELLO"
echo $x  # HELLO

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

z=${y^^}
echo $z  # HELLO




Shell

Related
how to append two file sin bash Code Example how to append two file sin bash Code Example
minecraft .bat code Code Example minecraft .bat code Code Example
git redo commit Code Example git redo commit Code Example
how to run spigot server using bat Code Example how to run spigot server using bat Code Example
apt package info Code Example apt package info Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13