alias: update Chinese translation (#13115)

This commit is contained in:
Tianyi Tao 2024-06-23 23:54:14 +08:00 committed by GitHub
parent 6d7f267407
commit ec316bbeb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,13 @@
# alias
> 创建别名 -- 用给定的字符串指代特定的命令。
> 别名只会在当前的 shell 会话中生效,除非它们在 shell 的配置文件中被定义,例如`~/.bashrc`.
> 创建别名——用给定的字符串指代特定的命令。
> 别名只会在当前的 shell 会话中生效,除非它们在 shell 的配置文件中被定义,例如`~/.bashrc`
> 更多信息:<https://tldp.org/LDP/abs/html/aliases.html>.
- 列出所有别名:
`alias`
- 创建一个通用的别名:
`alias {{别名}}="{{命令}}"`