Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我比较熟悉
资源
linux中的命令。通常要设置我的环境变量,我会运行以下命令。
源 .env
.env 是一个点文件。
如何在 Powershell 中执行此命令?
创建一个环境文件,如 EnvVarFile.ps1 并设置环境变量,如
Set-Item Env:TestEnvVar "TestEnvVarValue"
在 powershell 中运行 ps1 文件,如
. ./EnvVarFile.ps1
使用环境变量,如
>$Env:TestEnvVar TestEnvVarValue