Simple tool to retrieve your ssh hosts using cli.
Written in Rust and is BLAZINGLY FAST
- Touch file
hostnames.yamlwith simillar contents:
some_service:
test:
- some_test_host.site
prod:
- some_prod_host.site
...- Build the executable using
cargo:
cargo build --release- Execute command to get the appropriate host
ssh_remoteSuch output will be provided:
Pick option from:
1. some_service
1
Pick option from:
1. test
2. prod
2
----------
ssh some_prod_host.site
Additional arguments:
--verbose- will print config structure before interaction--dry- won't copy resulted command into your clipboard