I know that using cURL I can see my received cookies / headers by using
cURL
curl --head www.google.com
And I know that I can add h
curl -b cookie.txt -c cookie.txt or curl --cookie cookie.txt --cookie-jar cookie.txt will both store and send saved cookies.
curl -b cookie.txt -c cookie.txt
curl --cookie cookie.txt --cookie-jar cookie.txt