Merge pull request #713 from Dianshii/patch-5

补充 12-05 漏翻内容
This commit is contained in:
KaiserY 2023-03-25 14:06:16 +08:00 committed by GitHub
commit 53fa4d4ebe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,12 @@ $ IGNORE_CASE=1 cargo run to poem.txt
PS> $Env:IGNORE_CASE=1; cargo run to poem.txt
```
而这会让 `IGNORE_CASE` 的效果在当前 shell 会话中持续生效。可以通过 `Remove-Item` 命令来取消设置:
```console
PS> Remove-Item Env:IGNORE_CASE
```
这回应该得到包含可能有大写字母的 “to” 的行:
```console