Skip to content

Instantly share code, notes, and snippets.

@flevour
Created March 7, 2011 09:45
Show Gist options
  • Save flevour/858290 to your computer and use it in GitHub Desktop.
Save flevour/858290 to your computer and use it in GitHub Desktop.
#!/bin/bash
# This script copies your publick key to server passed as first argument and makes your life happier. Send me a nice thought. Francesco Levorato
if [ $# -ne 1 ]; then
echo Usage: $0 username@server
exit
fi
cat ~/.ssh/id_dsa.pub | ssh $@ 'mkdir -p .ssh; cat >> .ssh/authorized_keys; chmod 700 .ssh; chmod 600 .ssh/authorized_keys'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment