I can use the below command to write text to beginning of each line in the file
sed 's/^/Adding Text /' filename
But I want to skip the first line and add a another text to the first line alone at the beginning.
My current file:
Summary, Task Id, Project ID, Project
Test file for Project Task, T12345, P123456, Test
The Output I am looking for is:
Type, Summary, Task Id, Project ID, Project
Adding Text, Test1 file for Project Task, T12345, P123456, Test
Adding Text, Test1 file for Project Task, T12345, P123456, Test
Type should be added to the first line and Adding Text should be added to all other lines.