Technology

cURLでWebDAV

投稿日:2020年2月7日 更新日:

Basic認証でファイルのダウンロード

curl --user name:password -X GET -O --url https://example.com/path/to/filename.txt

Basic認証でファイルのアップロード

curl --user name:password -X PUT -T filename.txt --url https://example.com/path/to/filename.txt

-Technology
-,

執筆者:

関連記事

Raspberry Pi 4 を 外部ストレージで起動する。OSはCentOS8

CentoOS8 Raspberry Pi 4用イメージをダウンロード https://people.centos.org/pgreco/CentOS-Userland-8-stream-aarch6 …

node.jsの最大メモリを増やす

node.jsの最大メモリは2GBです。メモリ不足でWebpackのビルドが落ちることがあります。 FATAL ERROR: Ineffective mark-compacts near heap l …

pgpool-II オンラインリカバリスクリプト の修正

課題 pgpoolに付属のオンラインリカバリスクリプトが実行できない Postgres プライマリのホスト名の名前解決ができない「レプリケーションスロット名が不正」となる 環境 CentOS7Post …

Powershellを利用してFirefoxをダウンロードしてインストールする

PowerShell3.0 で導入された Invoke-WebRequest を利用してFirefoxをダウンロードします。Start-Process に -Verb RunAs をつけるこ …

CentOS8のリポジトリ参照先をCentOS Stream 8に変更する

CentOS Project の方針変更の発表がされました。 https://blog.centos.org/2020/12/future-is-centos-stream/ 要約すると、CentOS …