mirror of
https://github.com/pgrondek/config.git
synced 2024-11-25 21:25:39 +00:00
9 lines
127 B
Bash
Executable File
9 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f $HOME/.ssh/authorized_keys
|
|
|
|
mkdir -p $HOME/.ssh
|
|
|
|
ln -s $(pwd)/ssh/authorized_keys $HOME/.ssh/authorized_keys
|
|
|