5 lines
135 B
Bash
5 lines
135 B
Bash
|
#!/bin/sh
|
||
|
# 2019-09-10, Nico Schottelius, Seoul
|
||
|
|
||
|
gpg --list-keys --with-colons | grep RIF | awk -F: '{ print $10 }' | sed 's/\\x3a/:/'
|