mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 17:49:53 +00:00
8 lines
203 B
PowerShell
8 lines
203 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
gpg --list-secret-keys --keyid-format LONG |
|
|
Select-String -Pattern '\.*sec.*\/' |
|
|
Select-Object Line |
|
|
ForEach-Object {
|
|
$_.Line.split('/')[1].split(' ')[0]
|
|
} |