3 lines
95 B
Bash
Executable file
3 lines
95 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
ssh-add -L | awk '/^sk-ssh/ { print "key::" $1 " " $2 }'
|