Skip to content

Instantly share code, notes, and snippets.

@ijin
Forked from rtlong/get-keys-for-github-user.sh
Last active April 5, 2016 07:58
Show Gist options
  • Save ijin/396998ef7cbe62d97065 to your computer and use it in GitHub Desktop.
Save ijin/396998ef7cbe62d97065 to your computer and use it in GitHub Desktop.
Put public keys for a github user in ~/.ssh/authorized keys with mucho ease
IFS="$(printf '\n\t')"
mkdir -p ~/.ssh
if ! [[ -f ~/.ssh/authorized_keys ]]; then
echo "Creating new ~/.ssh/authorized_keys"
touch ~/.ssh/authorized_keys
fi
user=$1
keys=`curl https://api.github.com/users/$user/keys | grep -o -E "ssh-\w+\s+[^\"]+"`
for key in $keys; do
echo $key
grep -q "$key" ~/.ssh/authorized_keys || echo "$key" $user >> ~/.ssh/authorized_keys
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment