Horje
make everything uppercase or lowercase awk Code Example
awk lowercase
echo EXAMPLE | awk -F 'd' '{ print tolower($1)}'
example		#Example first lowercased outputed
make everything uppercase or lowercase awk
tolower($0) 
toupper($0)

a="UPPER CASE"
echo "$a" | awk '{print tolower($0)}'

awk '{print tolower($0)}' data.csv

$0 to print everything




Shell

Related
view symbols of so linux Code Example view symbols of so linux Code Example
linux command to check running process Code Example linux command to check running process Code Example
bash: ng: command not found yarn Code Example bash: ng: command not found yarn Code Example
bash command to move all files to a dir Code Example bash command to move all files to a dir Code Example
setting the CLASSPATH to temp libs in linux Code Example setting the CLASSPATH to temp libs in linux Code Example

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