10 ms·
This is awesome. But, does anyone know how to do this with `--save-cookies` command with wget?
by bloometal 13y ago
This is awesome. But, does anyone know how to do this with `--save-cookies` command with wget?
- codygman 13y agoI remember crafting something similar along the lines of this (incorrect argument names almost assuredly): curl $url_that_has_cookies -c - That will save the cookies to stdout, and IIRC you can pipe them to curl. I've done similar stuff with wget along the lines of just saving the cookies and then loading them within a single command.