SyntaxFix
Write A Post
Hire A Developer
Questions
Try this awk
awk
awk -F, '{$0=$3}1' file column3
,
$0=$3
3
1
This could also be used:
awk -F, '{print $3}' file