From `curl --help all` we find ```plaintext -b, --cookie Send cookies from string/file -c, --cookie-jar Write cookies to after operation ``` so `-b` is used to send cookies, and `-c` is used to get cookies. ```bash curl -c cookies.txt pt2a.bonhommer.com/network curl -b cookies.txt pt2a.bonhommer.com/network ```