So I decided to start using PowerShell rather than Command Prompt. And I want to run curl
. Very different output then discover that curl
is an alias to Invoke-WebRequest
in PowerShell.
Using PowerShell curl
in the same way as real curl
, I only get part of the content displayed.
I have seen that I can put the output of PowerShell curl
into a variable and then use $variable.Content
to display all of the content but that seems extra work over real curl
.
Is there an option to show all of the content directly? I can't see one in the help.