Linux CLI - Text Processing
Given a file
What is the output of
data.csv with content:name,age,city Alice,30,NY Bob,25,LA
What is the output of
cut -d ',' -f 2 data.csv?