我有这个文本文件。我想用换行替换字符串的出现。让我们说我有这个字符串测试。我想用换行符替换每个字符串的出现。我怎么能在shell中做到这一点
答案 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.2
,bash 4.2
在{{1}}上进行了测试。