Bash Scripting - File Operations in Scripts
What will be the output of this command on a CSV file
items.csv with content:id,price 1,10 2,20 3,15
awk -F',' 'NR>1 && $2 >= 15 {print $1}' items.csv