如何打印新行?这只会打印\n:
$ echo -e "Hello,\nWorld!"
Hello,\nWorld!
如何打印新行?这只会打印\n:
$ echo -e "Hello,\nWorld!"
Hello,\nWorld!
当前回答
我的脚本:
echo "WARNINGS: $warningsFound WARNINGS FOUND:\n$warningStrings
输出:
WARNING : 2 WARNINGS FOUND:\nWarning, found the following local orphaned signature file:
在我的Bash脚本中,我一直像你一样生气,直到我尝试了:
echo "WARNING : $warningsFound WARNINGS FOUND:
$warningStrings"
只需按Enter键即可插入跳转。现在的输出是:
WARNING : 2 WARNINGS FOUND:
Warning, found the following local orphaned signature file:
其他回答
您还可以执行以下操作:
echo "hello
world"
这在脚本内部和命令行中都有效。
在命令行上,按Shift+Enter键在字符串内进行换行。
这适用于我的macOS和Ubuntu 18.04(仿生海狸)系统。
确保你在巴什。
$ echo $0
bash
这四种方式对我都有效:
echo -e "Hello\nworld"
echo -e 'Hello\nworld'
echo Hello$'\n'world
echo Hello ; echo world
我的脚本:
echo "WARNINGS: $warningsFound WARNINGS FOUND:\n$warningStrings
输出:
WARNING : 2 WARNINGS FOUND:\nWarning, found the following local orphaned signature file:
在我的Bash脚本中,我一直像你一样生气,直到我尝试了:
echo "WARNING : $warningsFound WARNINGS FOUND:
$warningStrings"
只需按Enter键即可插入跳转。现在的输出是:
WARNING : 2 WARNINGS FOUND:
Warning, found the following local orphaned signature file:
你可以一直做回声“”。
例如
echo "Hello,"
echo ""
echo "World!"
POSIX 7回波
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html
-e未定义,反斜杠已实现定义:
如果第一个操作数是-n,或者任何操作数包含<反斜杠>字符,则结果由实现定义。
除非您有可选的XSI扩展名。
因此,我建议您改用printf,这是非常明确的:
格式操作数应用作XBD文件格式符号[…]中描述的格式字符串
文件格式符号:
\n<newline>将打印位置移动到下一行的开头。
还要记住,Ubuntu 15.10和大多数发行版都实现echo,如下所示:
内置Bash:help echo独立的可执行文件:哪个echo
这可能导致一些混淆。