用换行符替换字符串

时间:2013-12-02 23:31:27

标签: bash

我有这个文本文件。我想用换行替换字符串的出现。让我们说我有这个字符串测试。我想用换行符替换每个字符串的出现。我怎么能在shell中做到这一点

1 个答案:

答案 0 :(得分:1)

如果您使用sed

sed 's/abc/\n/' inupt.txt > output.txt

假设input.txt包含:

abc helo
a b c

你最终会得到:

[newline]
  helo
a b c

使用Ubuntu 13.10 sed 4.2bash 4.2在{{1}}上进行了测试。