如何在>之间仅替换一个换行符和<在unix中

时间:2016-07-17 14:44:15

标签: linux unix sed newline

假设我有一个文字:

"this\n is >\n<"

我希望将换行替换为none,这将导致:

"this\n is ><"

如何实现这一目标?

我尝试使用以下内容:

echo "this\n is >\n<" | sed -e 's/>\n<//g'

但它没有成功。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

使用\退出\

echo "this\n is >\n<" | sed -e 's/>\\n</></g'

输出:

this\n is ><