diff -r 94c0a938b66c -r ee9e63c437c4 docs/src/unlock.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/src/unlock.md Sun Jul 09 20:15:14 2017 +0200 @@ -0,0 +1,25 @@ +dav unlock +========== + +**`unlock [-pc] [-L ] `** + +Unlocks the specified url with a lock token. If no lock token is specified with the `-L` option, it read from stdin. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption + +**`-L `** use a lock token + +### Example 1: unlock with lock token from stdin + + $ dav lock myserv/resource > locktoken + $ dav unlock myserv/resource < locktoken + +### Example 2: unlock with lock token from command line argument + + $ dav lock myserv/resource + opaquelocktoken:0454905e-f2ff-45c4-a3d7-5c4e4db5ce37 + $ dav unlock -L opaquelocktoken:0454905e-f2ff-45c4-a3d7-5c4e4db5ce37 myserv/resource + +