Simple awk/sed question.
My input file is as follows :
abc
ddfdf
fjjjjj
dffdff
I need to insert a ' at the beginning of each line and insert ', at the end of each line. So the output should look like
'abc',
'ddfdf',
'fjjjjj',
'dffdff,
Thanks in advance for your help.
My input file is as follows :
abc
ddfdf
fjjjjj
dffdff
I need to insert a ' at the beginning of each line and insert ', at the end of each line. So the output should look like
'abc',
'ddfdf',
'fjjjjj',
'dffdff,
Thanks in advance for your help.