1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 12:26:03 +02:00
tldr/pages/windows/curl.md
Lena e2cc1b76aa
curl, open, powershell, wget: remove "view in older versions of tldr" (#10851)
* curl, open, powershell, wget: remove "view in older versions of `tldr`"

* curl, open, powershell, wget: remove "view in older versions of `tldr`" in translations
2023-11-19 22:03:18 +05:30

16 lines
653 B
Markdown

# curl
> In PowerShell, this command may be an alias of `Invoke-WebRequest` when the original `curl` program (<https://curl.se>) is not properly installed.
> More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/invoke-webrequest>.
- Check whether `curl` is properly installed by printing its version number. If this command evaluates into an error, PowerShell may have substituted this command with `Invoke-WebRequest`:
`curl --version`
- View documentation for the original `curl` command:
`tldr curl -p common`
- View documentation for PowerShell's `Invoke-WebRequest` command:
`tldr invoke-webrequest`