diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-05T17·26+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-06T10·15+0000 |
commit | fe61dee51170a4aa7cdd984e03e56d4dc45afbb9 (patch) | |
tree | 7ee427504bee31df4a6e62f763fd43f749e1eea9 /configs/.gnupg/import.sh | |
parent | 137bd6dc0c8ef65d89c0daada860a2dd25460983 (diff) |
Splice configs/shared directory
- Move all children from configs/shared into configs. - Delete "shared" directory.
Diffstat (limited to 'configs/.gnupg/import.sh')
-rwxr-xr-x | configs/.gnupg/import.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configs/.gnupg/import.sh b/configs/.gnupg/import.sh new file mode 100755 index 000000000000..e698aa3d2bd2 --- /dev/null +++ b/configs/.gnupg/import.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +set -e + +# Run this script to import all of the information exported by `export.sh`. +# Usage: ./import.sh path/to/directory + +gpg --import "$1/public.asc" +gpg --import "$1/secret.asc" +gpg --import-ownertrust "$1/ownertrust.txt" + +# Run this at the end to output some verification +gpg --list-keys |