I have multiple dates I'm working with in a csv. They are all on separate lines. They are represented by
219, 5/15/20, PM
74, 5/16/20, PM
1492, 5/17/20, PM
How can I use bash to replace 20 with 2020 or just add another 20 next to the original 20 so it looks like this:
219, 5/15/2020, PM
74, 5/16/2020, PM
1492, 5/17/2020, PM
Thanks for your help!