Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run cURL commands from Windows console

Is there a way to install cURL in Windows in order to run cURL commands from the command prompt?

like image 284
DomingoSL Avatar asked Apr 26 '10 02:04

DomingoSL


2 Answers

If you are not into Cygwin, you can use native Windows builds. Some are here: curl Download Wizard.

like image 75
Gabriel Ščerbák Avatar answered Sep 18 '22 16:09

Gabriel Ščerbák


First you need to download the cURL executable. For Windows 64bit, download it from here and for Windows 32bit download from here After that, save the curl.exe file on your C: drive.

To use it, just open the command prompt and type in:

C:\curl http://someurl.com 
like image 32
Ricardo Sanchez Avatar answered Sep 18 '22 16:09

Ricardo Sanchez