1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

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

1
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/
1
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?