- Save cookies from website to a file
1
$ curl -c cookie-jar.txt https://test_website.com/;
- Read cookies from file and send to website
1
$ curl -b cookie-jar.txt https://test_website.com/index
1
$ curl -c cookie-jar.txt https://test_website.com/;
1
$ curl -b cookie-jar.txt https://test_website.com/index