Linux 下echo命令实现换行(linuxecho换行)

echo 命令是Linux和Unix多数shell中最为常用的命令之一。它的主要作用是输出字符串或变量到标准输出设备(比如屏幕)中。在Bash中,echo 命令有多种用法,本文主要介绍如何在echo 命令中实现换行功能。

比如:

运行下面的命令即可实现换行:

echo -e “line 1\nline2”

此命令会打印两行:

line 1

line2

其中,-e参数表示使echo支持转义字符,\n表示换行符。

当然,换行也可以使用echo 命令传递一个变量:

str=”This is first line

This is second line“

echo $str

按照上面的命令,会打印出两行:

This is first line

This is second line

此外,换行功能也可以用bash的Here Document结构(即

echo

This is line one

This is line two

EOF

上面的代码会打印出:

This is line one

This is line two

总而言之,换行在echo 命令中是非常容易实现的,使用上面介绍的方法便可以完美实现。


数据运维技术 » Linux 下echo命令实现换行(linuxecho换行)