sed insert line with spaces to a specific line

后端 未结 4 1546
暖寄归人
暖寄归人 2021-01-30 16:01

I have a line with spaces in the start for example \" Hello world\". I want to insert this line to a specific line in a file. for example insert \" hello world\" to the next f

4条回答
  •  余生分开走
    2021-01-30 16:32

    It can be done by splitting the expression like this:

    sed -i $file -e '2i\' -e "     $text"
    

    This is a GNU extension for easier scripting.

提交回复
热议问题