79532410

Date: 2025-03-25 00:03:22
Score: 0.5
Natty:
Report link

Awk would be useful for this:

awk -F, 'NR>1 { print $1 ",(" $5 "," $6 ")"}' your_file.txt

Not sure if you want these to go to another file or location, but this should get you going.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Douglas Korinke