-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ssh.sh
executable file
·35 lines (26 loc) · 1.08 KB
/
ssh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env bash
###############################################################################
# Configure our SSH Key if needed #
###############################################################################
# Don't do anything if a SSH Key is already set up
[ -f ~/.ssh/id_rsa.pub ] && echo "It seems you already have a SSH Key here... existing" && exit
read -p 'Enter your email address for the SSH Key:' email
# generate ssh key
ssh-keygen -t rsa -b 4096 -C "$email"
# Start the ssh-agent in the background
eval "$(ssh-agent -s)"
# automatically load keys into the ssh-agent and store passphrases in your keychain
cat > ~/.ssh/config << EOL
Host *
IgnoreUnknown AddKeysToAgent,UseKeychain
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_rsa
EOL
# Add your SSH private key to the ssh-agent and store your passphrase in the keychain
/usr/bin/ssh-add -K ~/.ssh/id_rsa
echo "Here is your Public SSH Key (available in your clipboard):"
echo ""
cat ~/.ssh/id_rsa.pub
# Copy SSH Key to the clipboard
pbcopy < ~/.ssh/id_rsa.pub