首页 Linux curl http://url/script.ps1 | powershell可能吗?

curl http://url/script.ps1 | powershell可能吗?

我只想复制我在 Linux系统上执行的相同操作 c: {CURL_EQUIVALENT_ON_WINDOWS} – http://url/script | powershell 那可能吗? 基本上我想执行从服务器下载的流. IE:步骤: 1)了解如何在PowerShell中执行流. 执行一个流(我已在文件系统上拥有) c: type script.

我只想复制我在
Linux系统上执行的相同操作

c:\> \{CURL_EQUIVALENT_ON_WINDOWS} - http://url/script | powershell

那可能吗?

基本上我想执行从服务器下载的流.

IE:步骤:

1)了解如何在PowerShell中执行流.
执行一个流(我已在文件系统上拥有)

c:\> type script.ps1 | powershell -command -

但这不起作用.

有一个选项-File来执行“文件”,基本上我想尽可能执行流.

2)了解如何执行我从服务器下载并将其传输到PowerShell的流.

解决方法

您可以使用连字符指定powershell的命令参数,以使其从标准输入读取其命令.以下是一个例子:

"Write-Host This is a test" | powershell -command -

使用脚本文件内容的示例:

Get-Content .\test.ps1 | powershell -command -

从powershell帮助菜单:

powershell /?

-Command
Executes the specified commands (and any parameters) as though they were
typed at the Windows PowerShell command prompt,and then exits,unless
NoExit is specified. The value of Command can be “-“,a string. or a
script block.

If the value of Command is "-",the command text is read from standard
input.

本文来自网络,不代表青岛站长网立场。转载请注明出处: https://www.0532zz.com/html/zhonghe/fwq/linux/20201230/14689.html
上一篇
下一篇

作者: dawei

【声明】:青岛站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

返回顶部