Linux CLI - Text Processing
Given a file
What is the output of
data.txt with content:John 25 Developer Anna 30 Designer Mike 22 Tester
What is the output of
awk '{print $1, $3}' data.txt?