mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 09:39:51 +00:00
11 lines
125 B
Bash
11 lines
125 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -u
|
|
|
|
main() {
|
|
my_key="${1:-"${HOME}/.ssh/id_rsa"}"
|
|
ssh-keygen -p -f "${my_key}"
|
|
}
|
|
|
|
main "${1:-}"
|