4

我有一个转换文件数据的脚本,为了更有效地工作,我想更改内存中的数据,然后将其转储到文件中。假设我想修改一个包含以下内容的文件:

> This is a line
> this is other line

我使用 sed 命令将 '>' 符号替换为 '#' 符号:

transform_output=$(eval "sed ${sed_args[@]} $file" 2>&1)
echo -e $transform_output

我得到输出:

# This is a line # this is other line

而不是我想要的输出是:

# This is a line
# this is other line
  1. 如何将输出保存在保留换行符的字符串变量中?
  2. 如何在包含“#ADDED LINE#”的变量的开头添加一行并将其保存在文件中?

(我想获得的文件是):

#ADDED LINE#
# This is a line
# this is other line

提前致谢

4

1 回答 1

5
  1. 引用用于防止在空格处分词:

    echo -e "$transform_output"

  2. 将命令与另一个 echo 分组:

    { echo "#ADDED LINE#"; echo -e "$transform_output" } > file

于 2013-01-23T16:30:29.193 回答