I have a file that I need to edit using shell script. The original file looks like this :
'123456',
'234567',
'456789',
This should be the expected output :
'123456',
'234567',
'456789' <--- ( I just need to remove the (,) in the last line)
Do you guys have any idea on how to do this? using an SH or KSH shell script?