diff options
author | Bill Nagel <wnagel@tycoint.com> | 2014-11-30 16:51:26 -0500 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-30 21:53:30 +0000 |
commit | 96c3b1a1bb52f4f25c3c3e6284e0d5bc23145ef0 (patch) | |
tree | 14e7acad8b81029231f2028b976b48c1a35b2a7c /docs/MANUAL | |
parent | c8996bab1c95e292eff64fa848cf79131a01aeec (diff) |
docs: Updated for the SMB protocol
This patch updates the documentation for the SMB/CIFS protocol.
Diffstat (limited to 'docs/MANUAL')
-rw-r--r-- | docs/MANUAL | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/MANUAL b/docs/MANUAL index 18fecf6c5..113df2016 100644 --- a/docs/MANUAL +++ b/docs/MANUAL @@ -59,6 +59,10 @@ SIMPLE USAGE curl "http://[2001:1890:1112:1::20]/" + Get a file from an SMB server: + + curl -u "domain\username:passwd" smb://server.example.com/share/file.txt + DOWNLOAD TO A FILE Get a web page and store in a local file with a specific name: @@ -228,6 +232,11 @@ UPLOADING curl --proxytunnel -x proxy:port -T localfile ftp.upload.com +SMB / SMBS + + curl -T file.txt -u "domain\username:passwd" + smb://server.example.com/share/ + HTTP Upload all data on stdin to a specified HTTP site: |