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.
次のコマンドを使用して、http(s) リンクのヘッダーをダウンロードできます。
curl -kI http://stackoverflow.com > out.txt
リンクが別のリンクへのリダイレクトである場合は、次のコマンドを使用してターゲットのヘッダーもダウンロードできます。
curl -kIL http://stackoverflow.com > out.txt
aria2で同じことを行うことは可能ですか?