LoginSignup
1

More than 5 years have passed since last update.

Wgetを使ってWebDAVからダウンロードする方法

Last updated at Posted at 2016-11-06

WebDAV = http + Basic認証

WebDAVの実体はhttp(https)とBasic認証を利用したWebサーバのため、Wgetでダウンロードできる

wget --http-user="ユーザ名" --http-passwd="パスワード" https://hogehoge/

-rを追加すれば丸ごとダウンロードできる

wget --http-user="ユーザ名" --http-passwd="パスワード" -r https://hogehoge/

--ask-password追加でパスワードを隠すことができる

wget --http-user="ユーザ名" --ask-password -r https://hogehoge/

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1