3 changed files with 16 additions and 0 deletions
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
function ssh_setup { |
||||
mkdir -p ~/.ssh |
||||
chmod 700 ~/.ssh |
||||
touch ~/.ssh/config |
||||
chmod 600 ~/.ssh/config |
||||
} |
||||
|
||||
function ssh_key { |
||||
ssh-keygen -t ed25519 -C "${1?"Usage: $0 EMAIL"}" |
||||
} |
||||
|
Loading…
Reference in new issue