Curl -v logs

Hi All,

Seeking for your assistance on how to redirect into another files the logs of curl -v

i tried this code below but i got 0 logs.

curl -v 'http://127.0.0.0.......' >> test.logs

Thanks in advance.

BR,

Perhaps the output you want is being written to stderr instead try:

curl -v 'http://127.0.0.0.......' >> test.logs 2>&1
1 Like

wow it's finally working.. thanks Sir Chubler_XL

BR,