7 lines
123 B
Bash
Executable File
7 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! -e "${HOME}/.ssh/user" ]]; then
|
|
ssh-keygen -q -t ed25519 -N '' -f "${HOME}/.ssh/user" -C "user"
|
|
fi
|
|
|