8 lines
102 B
Bash
8 lines
102 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Retrieve key from Yubikey
|
||
|
echo "==> Getting keys from Yubikey..."
|
||
|
cd .ssh
|
||
|
ssh-keygen -K
|
||
|
|