Update README.md

This commit is contained in:
Gu1llaum-3 2025-03-15 15:43:01 +01:00
parent 20990ef970
commit a51c78efdf

View File

@ -5,7 +5,7 @@ SSH Manager (sshm) is a bash script that simplifies and automates the management
## Features ## Features
- List all SSH hosts in the configuration file. - List all SSH hosts in the configuration file.
- Connect to an SSH host by number or name. - Connect to an SSH host by name.
- View the configuration details of a specific SSH host. - View the configuration details of a specific SSH host.
- Add a new SSH host configuration. - Add a new SSH host configuration.
- Edit an existing SSH host configuration. - Edit an existing SSH host configuration.
@ -53,13 +53,13 @@ sshm list
### Connect to an SSH Host ### Connect to an SSH Host
```bash ```bash
sshm connect <name> sshm <host>
``` ```
### View SSH Host Configuration ### View SSH Host Configuration
```bash ```bash
sshm view <name> sshm view <host>
``` ```
### Add a New SSH Host Configuration ### Add a New SSH Host Configuration
@ -73,7 +73,7 @@ The script will prompt you to enter the host details.
### Edit an Existing SSH Host Configuration ### Edit an Existing SSH Host Configuration
```bash ```bash
sshm edit <name> sshm edit <host>
``` ```
The script will prompt you to enter the new details for the host. The script will prompt you to enter the new details for the host.
@ -81,13 +81,13 @@ The script will prompt you to enter the new details for the host.
### Delete an SSH Host Configuration ### Delete an SSH Host Configuration
```bash ```bash
sshm delete <name> sshm delete <host>
``` ```
### Check SSH Host Availability ### Check SSH Host Availability
```bash ```bash
sshm ping <name> sshm ping <host>
``` ```
### Manage SSH Contexts ### Manage SSH Contexts