https://github.com/antonjah/ssh-menu
A very simple terminal tool that renders an interactive menu with your ssh profiles listed
https://github.com/antonjah/ssh-menu
python python3 ssh terminal terminal-app
Last synced: 11 months ago
JSON representation
A very simple terminal tool that renders an interactive menu with your ssh profiles listed
- Host: GitHub
- URL: https://github.com/antonjah/ssh-menu
- Owner: antonjah
- Created: 2019-01-15T14:00:10.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T12:54:35.000Z (over 6 years ago)
- Last Synced: 2025-04-07T19:30:33.620Z (11 months ago)
- Topics: python, python3, ssh, terminal, terminal-app
- Language: Python
- Homepage:
- Size: 104 KB
- Stars: 15
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-cli-apps-in-a-csv - ssh-menu - A very simple terminal tool that renders an interactive menu with your ssh profiles listed. (<a name="networking"></a>Networking)
- awesome-cli-apps - ssh-menu - A very simple terminal tool that renders an interactive menu with your ssh profiles listed. (<a name="networking"></a>Networking)
README
#
sshmenu

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
## Installation
Requires:
* python3
* pip
Install:
```bash
sudo pip install ssh-menu
```
Uninstall:
```bash
sudo pip uninstall ssh-menu
```
**Note:** sshmenu depends on a config file located in your `/home/user/.ssh` folder
You can find examples [here](https://linuxize.com/post/using-the-ssh-config-file/)
## Alias
You can alias sshmenu to make it easier to use
Bash:
```bash
echo 'alias ssm="sshmenu"' >> ~/.bashrc
source ~/.bashrc
```
Zsh:
```bash
echo 'alias ssm="sshmenu"' >> ~/.zshrc
source ~/.zshrc
```
Now you can just run `ssm` to open sshmenu
## Docker
Running in docker (why? I don't know):
```bash
docker run -it -v $PWD/config:/root/.ssh/config antonjah/ssh-menu
```
## Contributors
[vkushnir](https://github.com/vkushnir)