Horje
awk lowercase 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
crontab delay after reboot Code Example crontab delay after reboot Code Example
bash math expression Code Example bash math expression Code Example
random in mac terminal Code Example random in mac terminal Code Example
python pandas read_excel xlrderror excel xlsx file not supported Code Example python pandas read_excel xlrderror excel xlsx file not supported Code Example
how to install sublime text arch linux Code Example how to install sublime text arch linux Code Example

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