-
Notifications
You must be signed in to change notification settings - Fork 1
/
keygen.sh
executable file
·53 lines (44 loc) · 1.13 KB
/
keygen.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
# -*- coding: UTF-8 -*-
## Helper script to speed up ssh keys generation for services like gitlab and github
## options
## -n, --name <string> Private key name [default: id_rsa]
## -e, --email <string> Email to associate with the key
# GENERATED_CODE: start
# Default values
_name=id_rsa
# No-arguments is not allowed
[ $# -eq 0 ] && sed -ne 's/^## \(.*\)/\1/p' $0 && exit 1
# Converting long-options into short ones
for arg in "$@"; do
shift
case "$arg" in
"--name") set -- "$@" "-n";;
"--email") set -- "$@" "-e";;
*) set -- "$@" "$arg"
esac
done
function print_illegal() {
echo Unexpected flag in command line \"$@\"
}
# Parsing flags and arguments
while getopts 'hn:e:' OPT; do
case $OPT in
h) sed -ne 's/^## \(.*\)/\1/p' $0
exit 1 ;;
n) _name=$OPTARG ;;
e) _email=$OPTARG ;;
\?) print_illegal $@ >&2;
echo "---"
sed -ne 's/^## \(.*\)/\1/p' $0
exit 1
;;
esac
done
# GENERATED_CODE: end
set -xe
cd $HOME/.ssh
ssh-keygen -o -t rsa -b 4096 -C "$_email" -f $_name
ssh-add $_name
xclip -sel clip < $_name.pub
cd -