mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
16 lines
284 B
Markdown
16 lines
284 B
Markdown
![]() |
# banner
|
||
|
|
||
|
> 将给定参数输出为大型 ASCII 文字.
|
||
|
|
||
|
- 将文字信息打印为大横幅(引号是可选的):
|
||
|
|
||
|
`banner {{"Hello World"}}`
|
||
|
|
||
|
- 将文字信息打印为横幅,宽度为 50 个字:
|
||
|
|
||
|
`banner -w {{50}} {{"Hello World"}}`
|
||
|
|
||
|
- 从 `stdin` 中读取文本:
|
||
|
|
||
|
`banner`
|