How do I pipe or redirect the output of curl -v?

后端 未结 8 1787
挽巷
挽巷 2021-01-29 21:17

For some reason the output always gets printed to the terminal, regardless of whether I redirect it via 2> or > or |. Is there a way to get around this? Why is this happening?

8条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-29 21:42

    The answer above didn't work for me, what did eventually was this syntax:

    curl https://${URL} &> /dev/stdout | tee -a ${LOG}

    tee puts the output on the screen, but also appends it to my log.

提交回复
热议问题