0
1
curl --verbose google.com
If I execute this command, after curl does its job, it says "Connection #0 to host google.com left intact".
But it doesn't use same connection if I execute same command right after that. How can I make curl re-use same connection in second command?
Note: I don't want to use that command in below, because I have to do some bash scripting operations between two requests:
curl --verbose google.com --next google.com
unfortunately I dont know C or PHP. Is it possible to do in command line? I have to use it in BASH – dandidondi – 2015-08-22T02:57:02.107
Well from what I understand if you reuse a handle you reuse the same connection. So take it for what it's worth. "http://serverfault.com/a/199446/284542"
– gh0st – 2015-08-22T09:57:06.533