Bash Scripting - File Operations in Scripts
Given a CSV file
What is the output of this command?
data.csv with content:name,age,city John,22,Boston Jane,30,Seattle
What is the output of this command?
awk -F',' '$2 > 25 {print $1}' data.csv