Comment by homebrewer
2 hours ago
This should work?
curl --dump-header /dev/fd/xxx https://google.com
or
mkfifo headers.out
curl --dump-header headers.out https://google.com
unless I'm misunderstanding you.
2 hours ago
This should work?
curl --dump-header /dev/fd/xxx https://google.com
or
mkfifo headers.out
curl --dump-header headers.out https://google.com
unless I'm misunderstanding you.
Ah yeah, `/dev/fd/xxx` works :) somehow thought that was Linux only.