Bash Scripting - File Operations in Scripts
Given a CSV file
What is the output of the command
data.csv with content:name,age,city Alice,30,New York Bob,25,Los Angeles Carol,27,Chicago
What is the output of the command
awk -F, '$2 > 26 {print $1}' data.csv?