Horje
bash how to convert text to lowercase or uppercase 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




Shell

Related
grant superuser permission to sudo user ubuntu Code Example grant superuser permission to sudo user ubuntu Code Example
pip not installing packages Code Example pip not installing packages Code Example
linux ls order by size Code Example linux ls order by size Code Example
linux permanent alias Code Example linux permanent alias Code Example
ubuntu microphone does not work Code Example ubuntu microphone does not work Code Example

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