1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

alacritty, explorer, banner: add Chinese translation (#4158)

This commit is contained in:
Flex Zhong 2020-07-08 21:16:23 +08:00 committed by GitHub
parent bcb600ecc4
commit 9e509e32d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# alacritty
> 跨平台,GPU 加速的终端模拟器.
> 更多信息: <https://github.com/jwilm/alacritty>.
- 打开一个新的 alacritty 窗口:
`alacritty`
- 运行在指定目录中:
`alacritty --working-directory {{路径}}`
- 在新的 alacritty 窗口中运行命令:
`alacritty -e {{命令}}`
- 指定备用配置文件 (默认在 $XDG_CONFIG_HOME/alacritty/alacritty.yml):
`alacritty --config-file {{路径/config.yml}}`
- 在启用实时配置重新加载的情况下运行(默认情况下也可以在 alacritty.yml 中启用):
`alacritty --live-config-reload --config-file {{路径/config.yml}}`

15
pages.zh/common/banner.md Normal file
View file

@ -0,0 +1,15 @@
# banner
> 将给定参数输出为大型 ASCII 文字.
- 将文字信息打印为大横幅(引号是可选的):
`banner {{"Hello World"}}`
- 将文字信息打印为横幅,宽度为 50 个字:
`banner -w {{50}} {{"Hello World"}}`
- 从 `stdin` 中读取文本:
`banner`

View file

@ -0,0 +1,15 @@
# explorer
> Windows 文件资源管理器.
- 打开 Windows 文件资源管理器:
`explorer`
- 在当前目录打开 Windows 文件资源管理器:
`explorer .`
- 在指定目录打开 Windows 文件资源管理器:
`explorer {{path/to/directory}}`