Skip to content

Instantly share code, notes, and snippets.

@tanish-kr
Last active January 17, 2019 03:06
Show Gist options
  • Save tanish-kr/8f30aac48f46f1c4346170d863df6c6a to your computer and use it in GitHub Desktop.
Save tanish-kr/8f30aac48f46f1c4346170d863df6c6a to your computer and use it in GitHub Desktop.
curlが入ってない場合のwget

Docker環境等でcurlが入ってないときなど

$ wget -q -O - http://xxx/xxx

-qは--quietでwgetの出力を抑止し、-Oは--output-documentでファイル名を指定して保存になりますが、-を指定すると標準出力にそのまま出力してくれるようになります。なので結果的にcurlと同じような動作になる

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment