docs/src/unlock.md

Thu, 01 Feb 2018 18:25:23 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Thu, 01 Feb 2018 18:25:23 +0100
changeset 365
f04ab0420512
parent 285
02d3e4b1245f
permissions
-rw-r--r--

fixes misuse of vaarg on all platforms

The parser creates a list of all required args now. The executor then gets all arguments at once.

---
title: 'dav unlock'
---

**`dav unlock [-pc] [-L <lock>] <url>`**

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 <lock>`** use the specified 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

mercurial