Tag: shell script linux ssh tectia open ssh
-
script to convert OpenSSH keys to Tectia SSH Format
bash script for converting OpenSSH keys to Tectia format and vice versa. #!/bin/bash # Usage instructionsmenu=”Make your choice:1. Convert OpenSSH key to Tectia format2. Convert Tectia key to OpenSSH format3. Exit”while :doprintf “%s\n: ” “$menu”read choicecase $choice in”1”)echo “Converting OpenSSH key to Tectia format”echo “Enter the full path to the input key file:”read input_pathif […