gpt4 book ai didi

powershell - 等效于curl的PowerShell http://www.example.com/script.sh | bash -s <参数>

转载 作者:行者123 更新时间:2023-12-02 23:58:55 32 4
gpt4 key购买 nike

如何在带有参数的PowerShell中运行远程脚本。
对于linux,我正在使用curl http://www.example.com/script.sh | bash -s <arguments>

在PowerShell中是否有类似的等效项。

用例:Amazon EC2的用户数据脚本

谢谢

最佳答案

您经常会发现像这样的示例:

iex (New-Object System.Net.WebClient).DownloadString('http://domain/script.ps1')

iex is an alias for Invoke-Expression (想像其他语言中的 execeval)。

剩下的工作是创建一个 [System.Net.WebClient] object,它具有下载URL内容并将其作为字符串返回的方法。

关于powershell - 等效于curl的PowerShell http://www.example.com/script.sh | bash -s <参数>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35615305/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com