是否可以在没有临时文件的情况下将heredoc内容直接插入输出文件中的特定行?
cat <<-EOT > tmp.txt
some string
another string
and another one
EOT
sed -i '10 r tmp.txt' outputfile && rm tmp.txt
我一直在使用这样的东西,但我宁愿避免需要tmp.txt
。
ed
可能是一个不错的选择
# create a test file
seq 15 > file
# save the heredoc contents in a variable
new=$(cat <<-EOT
some string
another string
and another one
EOT
)
# note the close parenthesis must **not** be on the same line as the heredoc word
# add the contents into the file
ed file <<EOF
10i
$new
.
wq
EOF
cat file
1
2
3
4
5
6
7
8
9
some string
another string
and another one
10
11
12
13
14
15
您可以合并两个 heredocs 以保存一个步骤:
ed file <<-EOF
10i
some string
another string
and another one
.
wq
EOF
这需要文件系统的一些支持,但是
sed -i '10 r /dev/stdin' outputfile <<EOF
additional
lines
EOF
会工作。但是,如果直接在脚本中指定文本而不是实际文件,则 a
命令可能更合适:
sed -i '10a
additional
lines
' outputfile