mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-13 03:21:20 +08:00
Update ch12-05-working-with-environment-variables.md
This commit is contained in:
parent
6b2fc9bb2d
commit
4c17810909
@ -215,7 +215,7 @@ To an admiring bog!
|
||||
如果你使用 PowerShell,则需要用两句命令而不是一句来设置环境变量并运行程序:
|
||||
|
||||
```text
|
||||
$ $env.CASE_INSENSITIVE=1
|
||||
$ $env:CASE_INSENSITIVE=1
|
||||
$ cargo run to poem.txt
|
||||
```
|
||||
|
||||
@ -223,4 +223,4 @@ $ cargo run to poem.txt
|
||||
|
||||
一些程序允许对相同配置同时使用参数 **和** 环境变量。在这种情况下,程序来决定参数和环境变量的优先级。作为一个留给你的测试,尝试通过一个命令行参数或一个环境变量来控制大小写不敏感搜索。并在运行程序时遇到矛盾值时决定命令行参数和环境变量的优先级。
|
||||
|
||||
`std::env` 模块还包含了更多处理环境变量的实用功能;请查看官方文档来了解其可用的功能。
|
||||
`std::env` 模块还包含了更多处理环境变量的实用功能;请查看官方文档来了解其可用的功能。
|
||||
|
Loading…
Reference in New Issue
Block a user