如何在 Bash 中左对齐文本

发布于 2024-12-28 13:07:15 字数 233 浏览 1 评论 0原文

给定一个文本 $txt,我如何在 Bash 中将其左对齐到给定宽度?

示例(宽度 = 10):

如果 $txt=hello,我想打印:

hello     |

如果 $txt=1234567890,我想打印:

1234567890|

Given a text, $txt, how could I left justify it to a given width in Bash?

Example (width = 10):

If $txt=hello, I would like to print:

hello     |

If $txt=1234567890, I would like to print:

1234567890|

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

咋地 2025-01-04 13:07:15

您可以使用 printf 命令,如下所示:

printf "%-10s |\n" "$txt"

%s 表示将参数解释为字符串,-10 告诉它向左对齐宽度为 10(负数表示左对齐,正数表示右对齐)。打印换行符需要 \n,因为 printf 不会隐式添加换行符。

注意man printf 简要描述了该命令,但完整格式文档可以在 man 3 中的 C 函数手册页中找到printf 。

You can use the printf command, like this:

printf "%-10s |\n" "$txt"

The %s means to interpret the argument as string, and the -10 tells it to left justify to width 10 (negative numbers mean left justify while positive numbers justify to the right). The \n is required to print a newline, since printf doesn't add one implicitly.

Note that man printf briefly describes this command, but the full format documentation can be found in the C function man page in man 3 printf.

如果没有 2025-01-04 13:07:15

您可以使用 - 标志进行左对齐。

例子:

[jaypal:~] printf "%10s\n" $txt
     hello
[jaypal:~] printf "%-10s\n" $txt
hello

You can use the - flag for left justification.

Example:

[jaypal:~] printf "%10s\n" $txt
     hello
[jaypal:~] printf "%-10s\n" $txt
hello
℉服软 2025-01-04 13:07:15

Bash 包含一个 printf 内置函数:

txt=1234567890
printf "%-10s\n" "$txt"

Bash contains a printf builtin:

txt=1234567890
printf "%-10s\n" "$txt"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文