cmd: readme was updated. closes studio-b12/gowebdav#27

Wrapper script section was updated
This commit is contained in:
vitalii 2018-10-22 08:29:10 +03:00
parent 7493d8befb
commit 425530b55e

View File

@ -76,10 +76,7 @@ gowebdav -X DEL temp/file.txt
# Wrapper script # Wrapper script
Create a wrapper script for example `$EDITOR ./dav && chmod a+x ./dav` for your You can create wrapper script for your server (via `$EDITOR ./dav && chmod a+x ./dav`) and add following content to it:
server and use [pass](https://www.passwordstore.org/ "the standard unix password manager")
or similar tools to retrieve the password.
```sh ```sh
#!/bin/sh #!/bin/sh
@ -89,6 +86,8 @@ PASSWORD="$(pass dav/foo@my.dav.server)" \
gowebdav $@ gowebdav $@
``` ```
It allows you to use [pass](https://www.passwordstore.org/ "the standard unix password manager") or similar tools to retrieve the password.
## Examples ## Examples
Using the `dav` wrapper: Using the `dav` wrapper:
@ -97,12 +96,8 @@ Using the `dav` wrapper:
$ ./dav -X LS / $ ./dav -X LS /
$ echo hi dav! > hello && ./dav -X PUT /hello $ echo hi dav! > hello && ./dav -X PUT /hello
$ ./dav -X STAT /hello $ ./dav -X STAT /hello
$ ./dav -X PUT /hello_dav hello $ ./dav -X PUT /hello_dav hello
$ ./dav -X GET /hello_dav $ ./dav -X GET /hello_dav
$ ./dav -X GET /hello_dav hello.txt $ ./dav -X GET /hello_dav hello.txt
``` ```