Skip to content
Advertisement

insert a line with file which has sed command in linux

I am trying to insert line in a file which will have a sed command to insert a line in another file Like below for eg : want to add this line sed -i '1s/^/insideFilen/' secondFile.sh to 65th line of firstfile.txt

I tried:

JavaScript

but not able to escape the '

also tried

JavaScript

but got sed: -e expression #1, char 18: unknown option to `s

Advertisement

Answer

You may use this sed:

JavaScript

Note:

  • Use of alternate delimiter ~ to avoid escaping /
  • use of double quotes for your sed command to avoid escaping single quotes
  • use of \\ to insert a single
  • use of \n inside double quotes to insert a line break

Alternatively with i (insert) instead of s (substitute):

JavaScript

Cleanest solution would be to create a sed script like this thus avoiding all quoting and extra escaping:

JavaScript

Then use it as:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement