最佳答案
我在开头有一行空格,例如“ Hello world”。 我希望将此行插入到文件中的特定行。 比如说 在下一个文件中插入“ hello world”
hello
world
结果:
hello
hello world
world
我正在使用这个 sed 脚本:
sed -i "${line} i ${text}" $file
问题是我的新系列没有空格:
hello
hello world
world