# wget が無い時に curl -OL でファイルのダウンロード

wget が無い時は curl -OL で同じ用にダウンロードできます。 -O は

-o, --output <file>
  Write output to <file> instead of stdout.

-L は

-L, --location
  (HTTP) If the server reports that the requested page has moved to a different location (indicated with a  Location:  header  and  a 3XX response code), this option will make curl redo the request on the new place.

# 感想

curl -oL が正しいのかもしれないのですが curl -OL のほうが OL さんみたいで覚えやすいです、これで動くし

# references


Last Updated: 2022/8/21 5:16:23