16 lines
No EOL
285 B
Bash
Executable file
16 lines
No EOL
285 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# SCRIPT NAME:
|
|
# ssh-switch
|
|
#
|
|
# AUTHOR:
|
|
# Severin Kaderli <severin@kaderli.dev>
|
|
#
|
|
# DESCRIPTION:
|
|
# Switches the current SSH Key
|
|
#
|
|
# USAGE:
|
|
# ./ssh-switch KEY
|
|
|
|
cp -a "${HOME}/.ssh/${1}" "${HOME}/.ssh/id_rsa"
|
|
cp -a "${HOME}/.ssh/${1}.pub" "${HOME}/.ssh/id_rsa.pub" |