sshmenu is a very simple terminal tool that reads your ssh-config
and renders an interactive menu with your ssh profiles listed
If sshmenu is executed within a Tmux session, it will automatically create a new pane and connect
Requires:
- python3
- pip
Install:
sudo pip install ssh-menuUninstall:
sudo pip uninstall ssh-menuNote: sshmenu depends on a config file located in your /home/user/.ssh folder
You can find examples here
You can alias sshmenu to make it easier to use
Bash:
echo 'alias ssm="sshmenu"' >> ~/.bashrc
source ~/.bashrcZsh:
echo 'alias ssm="sshmenu"' >> ~/.zshrc
source ~/.zshrcNow you can just run ssm to open sshmenu
Running in docker (why? I don't know):
docker run -it -v $PWD/config:/root/.ssh/config antonjah/ssh-menu
