UNIXworkcode

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