jitty-scripts/gensshkey.sh
mollusk 008701bf36 gensshkey.sh: add help
Former-commit-id: 0d9f9e38afdd91289d2659e3f70e0444b4c1d6c1
Former-commit-id: 12e70135c0dd44584143605943503d0515d5b38f
2018-11-17 07:37:34 -07:00

8 lines
101 B
Bash
Executable File

#!/bin/bash
case $1 in
-e ) ssh-keygen -t rsa -b 4096 -C "${2}";;
*) echo "${0}" -e [email];;
esac