如何打印新行?这只会打印\n:

$ echo -e "Hello,\nWorld!"
Hello,\nWorld!

当前回答

str='hello\nworld'
$ echo | sed "i$str"
hello
world

其他回答

确保你在巴什。

$ echo $0
bash

这四种方式对我都有效:

echo -e "Hello\nworld"
echo -e 'Hello\nworld'
echo Hello$'\n'world
echo Hello ; echo world

Bash 4.4中添加了一个新的参数扩展,用于解释转义序列:

${parameter@operator}-E操作员展开是一个字符串,它是参数的值反斜杠转义序列扩展为$“…”引号机械装置

$ foo='hello\nworld'
$ echo "${foo@E}"
hello
world
str='hello\nworld'
$ echo | sed "i$str"
hello
world

简单地键入

echo

获得一条新线路

改用printf:

printf "hello\nworld\n"

printf在不同环境中的表现比echo更一致。