mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-04-22 01:46:42 +00:00
13 lines
156 B
Bash
13 lines
156 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -u
|
|
|
|
main() {
|
|
gpg --list-secret-keys --keyid-format LONG |
|
|
grep sec |
|
|
cut -d'/' -f2 |
|
|
cut -d' ' -f1
|
|
}
|
|
|
|
main
|