Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
stdout ファイルとログ ファイルの両方で curl 出力を取得するにはどうすればよいですか?
これにより、ログ ファイルにリダイレクトされます。
curl -o $OUTPUTFILE 2>>$LOGFILES $url
これにより、標準出力に出力が表示されます。
curl -o $OUTPUTFILE $url
あなたが使用するtee:
tee
curl -o $OUTPUTFILE $URL 2>&1 | tee $LOGFILE