本文介绍了如何在bash中将换行符打印为\ n?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
基本上,我想实现类似 echo -e
的逆函数.我有一个存储命令输出的变量,但我想将换行符打印为\ n.
Basically I want to achieve something like the inverse of echo -e
.I have a variable which stores a command output but I want to print newlines as \n.
推荐答案
这是我的解决方案:
sed 's/$/\\n/' | tr -d '\n'
这篇关于如何在bash中将换行符打印为\ n?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!