假设我有一个文字:
"this\n is >\n<"
我希望将换行替换为none,这将导致:
"this\n is ><"
如何实现这一目标?
我尝试使用以下内容:
echo "this\n is >\n<" | sed -e 's/>\n<//g'
但它没有成功。任何帮助将不胜感激。
答案 0 :(得分:3)
使用\
退出\
:
echo "this\n is >\n<" | sed -e 's/>\\n</></g'
输出:
this\n is ><