DEV Community

Mohan Sharma
Mohan Sharma

Posted on

curl equivalent command in windows

The curl command is a versatile tool used in the command line to transfer data to or from a server using various protocols. It is widely used for testing APIs, downloading files, and interacting with web servers.

Invoke-WebRequest -Uri "https://www.google.com" -UseBasicParsing

Enter fullscreen mode Exit fullscreen mode

Top comments (0)