admin管理员组文章数量:1347422
In pwsh, how can I form a URL string (with both host and port) for a command line argument?
The following...
$env:SITE_HOST = 'www.google'
$env:SITE_PORT = '443'
curl https://$env:SITE_HOST:$env:SITE_PORT
Fails with...
curl: (7) Failed to connect to 0.0.1.187 port 443 after 0 ms: Couldn't connect to server
In pwsh, how can I form a URL string (with both host and port) for a command line argument?
The following...
$env:SITE_HOST = 'www.google'
$env:SITE_PORT = '443'
curl https://$env:SITE_HOST:$env:SITE_PORT
Fails with...
curl: (7) Failed to connect to 0.0.1.187 port 443 after 0 ms: Couldn't connect to server
Share
Improve this question
edited 2 days ago
Wallace
asked 2 days ago
WallaceWallace
17.6k9 gold badges60 silver badges83 bronze badges
2 Answers
Reset to default 0Looks like this works:
curl "https://$($env:SITE_HOST):$($env:SITE_PORT)"
This works for me. It's the colon after the first variable that's the problem. (Arguments are inherently within $( )
) Fixed with the curly braces.
echoargs https://${env:userdomain}:$env:processor_level
Arg 0 is <https://MYDOMAIN:6>
Or escape the colon with backquote:
echoargs https://$env:userdomain`:$env:processor_level
Arg 0 is <https://MYDOMAIN:6>
本文标签: powershell coreIn pwshbuild url string with environment variablesStack Overflow
版权声明:本文标题:powershell core - In pwsh, build url string with environment variables - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743834612a2547161.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论