Update 'README.md'

This commit is contained in:
Netflix 2021-03-11 18:02:01 +01:00
parent 53cb1d92e1
commit 38e768003e
1 changed files with 17 additions and 0 deletions

View File

@ -56,4 +56,21 @@ decrypt "$1 "
Example usage:
```bash
bash decrypt.sh "BLAH BLAH"
```
### Find keys
```bash
function find_key {
out=$( gpg2 --list-keys "$1")
echo "$out"
}
find_key "$1"
```
Example usage:
```bash
bash find_key.sh "tom"
```