wgetでCurl -L対応するコマンドを使用しますか?

wgetでCurl -L対応するコマンドを使用しますか?

システムにいくつかの穴があるため、このcurlコマンドを切り替えたいと思います。wgetcurl

curl -fsSL https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-static-amd64

wgetパラメータは何ですかcurl -L?よろしくお願いします!

ベストアンサー1

このパラメータがない場合、デフォルトのwgetリダイレクトは次のようになります。

例:

% wget --verbose https://google.com --output-document=/dev/null
--2022-12-06 15:40:20--  https://google.com/
Resolving google.com (google.com)... 216.58.220.110
Connecting to google.com (google.com)|216.58.220.110|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.google.com/ [following]
--2022-12-06 15:40:20--  https://www.google.com/
Resolving www.google.com (www.google.com)... 142.251.42.164
Connecting to www.google.com (www.google.com)|142.251.42.164|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘/dev/null’

/dev/null                                     [ <=>                                                                                ]  14.82K  --.-KB/s    in 0s

2022-12-06 15:40:20 (49.4 MB/s) - ‘/dev/null’ saved [15179]

あなたはできます障害を負う--max-redirect0に設定して、次のリダイレクトを実行します。

% wget --verbose https://google.com --output-document=/dev/null --max-redirect=0
--2022-12-06 15:41:00--  https://google.com/
Resolving google.com (google.com)... 216.58.220.110
Connecting to google.com (google.com)|216.58.220.110|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.google.com/ [following]
0 redirections exceeded.

したがって、次のリダイレクトの観点からはほぼ同じです。

得る カール
wget curl -L
wget --max-redirect=0 curl

おすすめ記事