不同命令行工具是如何设置系统环境变量的

168次阅读
没有评论

PowerShell

设置变量并赋值

$env:GOOS="linux"
$env:GOARCH="amd64"

获取变量的值

$env:GOOS
echo $env:GOARCH

CMD

设置变量并赋值

set GOOS
set GOARCH

获取变量的值

%GOOS%
echo %GOARCH%

Shell:Bash、

export GOOS=linux
export GOARCH=amd64

参考

正文完
 0
wujingquan
版权声明:本站原创文章,由 wujingquan 于2024-11-21发表,共计240字。
转载说明:Unless otherwise specified, all articles are published by cc-4.0 protocol. Please indicate the source of reprint.
评论(没有评论)