Top "Curl" questions

cURL is a library and command-line tool for transferring data using various protocols such as HTTP, FTP and SFTP.

curl : (1) Protocol https not supported or disabled in libcurl

I'm trying to install the Rails environments on Ubuntu 11.04. When I launch the command rvm install 1.9.2 --with-openssl-dir=/usr/local the …

ruby-on-rails curl openssl libcurl ubuntu-11.04
Assign output to variable in Bash

I'm trying to assign the output of cURL into a variable like so: #!/bin/sh $IP=`curl automation.whatismyip.com/…

bash curl
Getting HTTP code in PHP using curl

I'm using CURL to get the status of a site, if it's up/down or redirecting to another site. I …

php performance curl http-headers
How to use cURL in Java?

I am a newbie in java and wanted to use curl in java. What is my question is curl built-in …

java curl
How do I make curl ignore the proxy?

How do I make curl ignore the proxy? Setting $NO_PROXY doesn't seem to work for me.

curl
Save file to specific folder with curl command

In a shell script, I want to download a file from some URL and save it to a specific folder. …

bash shell curl directory
cURL equivalent in Node.js?

I'm looking to use information from an HTTP request using Node.js (i.e. call a remote web service and …

curl node.js
CURL alternative in Python

I have a cURL call that I use in PHP: curl -i -H 'Accept: application/xml' -u login:key "https://…

python curl
how to get curl to output only http response body (json) and no other headers etc

I am using curl in a bash script to fetch the response of a service as below, response=$(curl -isb …

json bash curl
pass JSON to HTTP POST Request

I'm trying to make a HTTP POST request to the google QPX Express API [1] using nodejs and request [2]. My code …

json node.js curl express node-request