SyntaxFix
Write A Post
Hire A Developer
Questions
curl -H @<header_file> <host>
Since curl 7.55 headers from file are supported with @<file>
@<file>
echo 'Cookie: USER_TOKEN=Yes' > /tmp/cookie
curl -H @/tmp/cookie <host>
docs & commit