8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
scriptdir=$(dirname $(realpath $0))
|
|
|
|
mkdir -p ~/.ssh
|
|
cat $scriptdir/files/authorized_keys >> ~/.ssh/authorized_keys
|
|
|