当前位置:首页 > 站长知识 > 服务器 > 正文内容

如何在 CentOS 中换行

2024-12-13服务器31

一、使用转义字符

最简单的方法是使用转义字符“”。在要换行的位置按“”,然后按下回车键即可。

示例:

1

2

echo "This is a long line.

This is the second line."

输出:

1

2

This is a long line.

This is the second line.

二、使用换行符

还可以使用换行符 ASCII 码 (10) 来换行。

示例:

1

2

echo "This is a long line.$(printf '

')This is the second line."

输出:

1

2

This is a long line.

This is the second line.

三、使用 printf

printf 命令还可以用于换行。使用 “ ” 格式说明符:

示例:

1

2

3

printf "This is a long line.

This is the second line.

"

输出:

1

2

This is a long line.

This is the second line.

四、使用 echo -e

echo -e 命令允许识别转义序列,包括换行符。

示例:

1

2

echo -e "This is a long line.

This is the second line."

输出:

1

2

This is a long line.

This is the second line.