我正在开发一个bash脚本,该脚本将根据行中的数据拆分文本文档的内容。
如果原始文件的内容与
01 line
01 line
02 line
02 line
我如何使用bash插入此文件的第3行
01 line
01 line
text to insert
02 line
02 line
我希望使用heredoc或脚本中的类似内容来执行此操作
#!/bin/bash
vim -e -s ./file.txt <<- HEREDOC
:3 | startinsert | "text to insert\n"
:update
:quit
HEREDOC
上面的方法当然行不通,但是我可以在此bash脚本中实现的任何建议呢?
stackoverflow.com/questions/6537490/...
—
giannis christofakis