7 lines
91 B
Bash
Executable file
7 lines
91 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
function main {
|
|
ssh-keygen -m PEM -t rsa -b 4096 -C "$1"
|
|
}
|
|
|
|
main
|