|
1 DavUtils - cmd tools |
|
2 ============================ |
|
3 |
|
4 Introduction |
|
5 ------------ |
|
6 |
|
7 A collection of command line tools for accessing WebDAV server, including the |
|
8 tool dav, a general purpose WebDAV client and dav-sync, a program for |
|
9 synchronizing local files with WebDAV server. Both tools can encrypt files |
|
10 on the fly with AES. |
|
11 |
|
12 |
|
13 Installation |
|
14 ------------ |
|
15 |
|
16 See the file INSTALL for build and installation instructions. |
|
17 |
|
18 |
|
19 Documentation |
|
20 ------------- |
|
21 |
|
22 Documentation can be found at http://davutils.sourceforge.net/docs/ |
|
23 |
|
24 |
|
25 First Steps |
|
26 ----------- |
|
27 |
|
28 Most dav commands expect an url, for example if you want to list all |
|
29 resources in a WebDAV collection you can do it with |
|
30 |
|
31 $ dav list https://example.com/webdav/mycollection/ |
|
32 |
|
33 A useful feature is to save your repository information in the |
|
34 $HOME/.dav/config.xml file. An easy way to do this is to use the |
|
35 interactive configuration assistent. |
|
36 |
|
37 $ dav add-repository |
|
38 |
|
39 After you configured the repository you can access it with its name, for |
|
40 example |
|
41 |
|
42 $ dav list myrepo |
|
43 |
|
44 You can combine the repository name with a path |
|
45 |
|
46 $ dav list myrepo/files/ |
|
47 |
|
48 |
|
49 Support |
|
50 ------- |
|
51 |
|
52 Bug reports and feature requests can be done at sourceforge. For questions |
|
53 you can use the sourceforge forum or contact me via email. |
|
54 |
|
55 https://sourceforge.net/p/davutils/tickets/ |
|
56 https://sourceforge.net/p/davutils/discussion/ |
|
57 |
|
58 Olaf Wintermann <olaf.wintermann@gmail.com> |
|
59 |
|
60 |
|
61 License |
|
62 ------- |
|
63 |
|
64 Copyright 2016 Olaf Wintermann. All rights reserved. |
|
65 |
|
66 Redistribution and use in source and binary forms, with or without |
|
67 modification, are permitted provided that the following conditions are met: |
|
68 |
|
69 1. Redistributions of source code must retain the above copyright |
|
70 notice, this list of conditions and the following disclaimer. |
|
71 |
|
72 2. Redistributions in binary form must reproduce the above copyright |
|
73 notice, this list of conditions and the following disclaimer in the |
|
74 documentation and/or other materials provided with the distribution. |
|
75 |
|
76 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
77 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
78 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
79 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
|
80 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|
81 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
82 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
83 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
84 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
85 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
86 POSSIBILITY OF SUCH DAMAGE. |
|
87 |