通过powershell运行curl - 如何构造参数?

pau*_*ulm 10 powershell

我正在尝试运行curl来在我的脚本中上传文件,使用批处理是痛苦的,因为我需要进行字符串操作等所以我转向PowerShell.

但是我似乎无法使用powershell来执行Curl:

$hash = "test"
$fileToUpload = "hello world.txt"
$user = "user"
$password = "passy"
curl --ftp-create-dirs -T $fileToUpload -u ${user}:${pass} ftp://example.com/$hash/$fileToUpload
Run Code Online (Sandbox Code Playgroud)

这导致:

Invoke-WebRequest : Parameter cannot be processed because the parameter name 'T' is ambiguous. Possible matches include: 
-TimeoutSec -TransferEncoding.
At line:5 char:24
+ curl --ftp-create-dirs -T $fileToUpload -u ${user}:${pass} ftp://example.com/$ha ...
+                        ~~
    + CategoryInfo          : InvalidArgument: (:) [Invoke-WebRequest], ParameterBindingException
    + FullyQualifiedErrorId : AmbiguousParameter,Microsoft.PowerShell.Commands.InvokeWebRequestCommand
Run Code Online (Sandbox Code Playgroud)

Curl.exe在我的PATH中.

use*_*407 23

在PowerShell中curlInvoke-WebRequestcmdlet 的内置别名.别名在命令解析方面具有优先权.要更具体地解决您的问题,请使用curl.exe而不是curl,因此命令不能解析为别名.或者您可以删除别名Remove-Item alias:curl,但由于它是在别名中构建的,您必须将此命令放在您的配置文件中,或在每个会话中调用它.

如果您不确定PowerShell如何解析命令,则可以使用Get-Commandcmdlet:

Get-Command curl
Get-Command curl.exe
Run Code Online (Sandbox Code Playgroud)

  • 我的意思是`-Name`:`Get-Alias -Name curl`.我可能应该说"检查给定的命令名是否存在具有相同名称的别名". (2认同)