pages*: fix various proper names, acronyms and initialisms (#12494)

This commit is contained in:
Vitor Henrique
2024-03-14 02:01:06 -03:00
committed by GitHub
parent 33770df77d
commit 935d605998
243 changed files with 415 additions and 415 deletions

View File

@@ -1,7 +1,7 @@
# 7zr
> 一个高压缩率的文件归档器。
> 类似于 `7z`,只支持 `.7z` 文件。
> 类似于 `7z`,只支持 7z 文件。
> 更多信息:<https://manned.org/7zr>.
- 归档一个文件或目录:

View File

@@ -20,7 +20,7 @@
`bat --number {{文件}}`
- 高亮一个 `json` 文件:
- 高亮一个 JSON 文件:
`bat --language json {{文件.json}}`

View File

@@ -7,7 +7,7 @@
`browser-sync start --server {{路径/到/目录}} --files {{路径/到/目录}}`
- 启动当前目录服务,同时监听指定目录下 `css` 文件的变动:
- 启动当前目录服务,同时监听指定目录下 CSS 文件的变动:
`browser-sync start --server --files '{{路径/到/目录/*.css}}'`

View File

@@ -3,19 +3,19 @@
> 从 Dockerfile 打包镜像。
> 更多信息:<https://docs.docker.com/engine/reference/commandline/build/>.
- 使用当前目录下的 Dockerfile 打包一个 docker 镜像:
- 使用当前目录下的 Dockerfile 打包一个 Docker 镜像:
`docker build .`
- 从指定 URL 的 Dockerfile 打包 docker 镜像:
- 从指定 URL 的 Dockerfile 打包 Docker 镜像:
`docker build {{github.com/creack/docker-firefox}}`
- 打包一个 docker 镜像并指定镜像的标签:
- 打包一个 Docker 镜像并指定镜像的标签:
`docker build --tag {{name:tag}} .`
- 打包一个没有上下文的 docker 镜像:
- 打包一个没有上下文的 Docker 镜像:
`docker build --tag {{name:tag}} - < {{Dockerfile}}`
@@ -23,7 +23,7 @@
`docker build --no-cache --tag {{name:tag}} .`
- 使用指定的 Dockerfile 打包一个 docker 镜像:
- 使用指定的 Dockerfile 打包一个 Docker 镜像:
`docker build --file {{Dockerfile}} .`

View File

@@ -4,7 +4,7 @@
> 此命令也有关于其子命令的文件,例如:`docker run`.
> 更多信息:<https://docs.docker.com/engine/reference/commandline/cli/>.
- 列出所有 docker 容器(包括停止的容器):
- 列出所有 Docker 容器(包括停止的容器):
`docker ps --all`
@@ -16,7 +16,7 @@
`docker {{start|stop}} {{容器名称}}`
-docker registry 中拉取镜像:
-Docker registry 中拉取镜像:
`docker pull {{镜像}}`

View File

@@ -1,6 +1,6 @@
# gunicorn
> Python 的 WSGI http 服务器。
> Python 的 WSGI HTTP 服务器。
> 更多信息:<https://gunicorn.org/>.
- 运行 Python web 应用程序:
@@ -23,6 +23,6 @@
`gunicorn --threads {{4}} {{导入路径:应用程序}}`
- 通过 https 运行应用程序:
- 通过 HTTPS 运行应用程序:
`gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}`

View File

@@ -3,11 +3,11 @@
> Java 堆分析工具。
> 更多信息:<https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jhat.html>.
- 分析堆转储文件(来自 jmap通过 http 端口 7000 进行查看:
- 分析堆转储文件(来自 jmap通过 HTTP 端口 7000 进行查看:
`jhat {{路径/堆转储文件}}`
- 分析堆转储文件,为 http 服务指定备用端口:
- 分析堆转储文件,为 HTTP 服务指定备用端口:
`jhat -p {{端口}} {{路径/堆转储文件}}`

View File

@@ -4,7 +4,7 @@
> 需要确保 ssh 代理已启动并正在运行以加载其中的密钥。
> 更多信息:<https://man.openbsd.org/ssh-add>.
-`~/.ssh` 中的默认 ssh 密钥添加到 `ssh` 代理:
-`~/.ssh` 中的默认 SSH 密钥添加到 SSH 代理:
`ssh-add`

View File

@@ -1,10 +1,10 @@
# sshuttle
> 通过 ssh 连接传输流量的透明代理服务器。
> 不需要管理员或远程 ssh 服务器上的任何特殊设置。
> 通过 SSH 连接传输流量的透明代理服务器。
> 不需要管理员或远程 SSH 服务器上的任何特殊设置。
> 更多信息:<https://manned.org/sshuttle>.
- 通过远程 ssh 服务器转发所有 IPv4 TCP 流量:
- 通过远程 SSH 服务器转发所有 IPv4 TCP 流量:
`sshuttle --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}}`

View File

@@ -1,6 +1,6 @@
# unzip
> 从 ZIP 压缩包中提取文件或目录。
> 从 Zip 压缩包中提取文件或目录。
> 参见:`zip`.
> 更多信息:<https://manned.org/unzip>.

View File

@@ -3,7 +3,7 @@
> 找到命令的二进制,源文件和手册文件。
> 更多信息:<https://manned.org/whereis>.
- 找到 `ssh` 命令的二进制、源文件和手册页:
- 找到 SSH 命令的二进制、源文件和手册页:
`whereis {{ssh}}`