What is cURL?
curl is a
curl is a command line tool for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.
curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks.
How to install cURL?
- Open http://curl.haxx.se/dlwiz?type=bin in a browser.
- Select your operating system in the dropdown box: either Windows /Win32 or Win 64. Click Select!
- For Win 32, choose whether you will use curl in a Windows Command Prompt (Generic) or in a Cygwin terminal (cygwin). For Win 64, choose whether you will use curl in a Windows Command Prompt (Generic) or MinGW (MinGW64). Click Select!
- If required, choose your Windows operating system. Finish.
- Click Download for the version which has SSL enabled or disabled
- Open the downloaded zip file. Extract the files to an easy-to-find place, such as C:\Program Files.
Testing curl
- Open up the Windows Command Prompt terminal. (From the Start menu, click Run, then type cmd.)
- Set the path to include the directory where you put curl.exe. For example, if you put it in C:\Program Files\curl, then you would type the following command: set path=%path%;"c:\Program Files\curl"
NOTE: You can also directly copy the curl.exe file any existing path in your path
- Type curl. You should see the following message: curl: try 'curl –help' or 'curl –message' for more information This means that curl is installed and the path is correct.
for more Info go here
Comments
Post a Comment