diff --git a/README.md b/README.md index 9b07a25..ea7c0ac 100644 --- a/README.md +++ b/README.md @@ -20,25 +20,25 @@ from the provided data structure and to install it: ## Usage -Import of a new packager key +### Import +Import a new packager key by deriving the username from the filename. ```bash ./keyringctl import .asc -# alternatively override the username otherwise derived from the filename -./keyringctl import --name ``` -Updates to existing packager keys - +Alternatively import a file or directory and override the username ```bash -# username is automatically derived from the fingerprint -./keyringctl import ... +./keyringctl import --name ``` -Import of a new main key - +Updates to existing keys will automatically derive the username from the known fingerprint. +```bash +./keyringctl import +``` + +Main key imports support the same options plus a mandatory `--main` ```bash -# same options as packager key except mandatory --main ./keyringctl import --main .asc ```