lk/data/pass.md
Malin Freeborn ba8026e0c3
change formatting
input examples are now given as

```bash
input $ARG1
```

While outputs use md's '> ' sign as a quote.
2023-06-17 21:28:20 +02:00

596 B

title tags
pass
Documentation
data

Video instructions

Setup gpg keys.

Show your gpg secret it:

gpg --list-secret-keys

Then use the id number under sec to make a pass repo:

KEY="$(gpg --list-secret-keys  | grep -m 1 -A1 '^sec' | tail -n 1)"
pass init $KEY

To add a basic password, e.g. for $WEBSITE:

pass $WEBSITE

To insert a multiline password, e.g. with a login name:

pass add -m $WEBSITE

Remove a password:

pass rm $WEBSITE