如何使用 VSCode CLI 打开 Windows 上的 `hosts` 文件?

How to use VSCode CLI to open the `hosts` file on Windows?

尝试 code '%SystemRoot%\System32\drivers\etc\hosts' 使用 Git Bash,但无法解析 %SystemRoot%,有人知道如何实现吗?

不清楚您要使用 VSCode CLI 做什么,但您可以尝试使用 WINDIR 环境变量,例如在 MinGW(这是 Git Bash 的基础):

$ echo "$WINDIR/system32/drivers/etc/hosts"
C:\WINDOWS/system32/drivers/etc/hosts

请注意,在 Windows 和基于 MinGW 的工具中,正斜杠和反斜杠在文件名中可以​​互换。