/goto

A simple SSH manager that provides you with easy access to a list of your favorite SSH servers. Binaries included! 😉

Primary LanguageGoMIT LicenseMIT

GOTO - A simple SSH manager

License

This utility helps to maintain a list of ssh servers. Unlike PuTTY it doesn't incorporate any connection logic, but relying on ssh utility which should be installed on your system.

Supported platforms: macOS, Linux, Windows.

1. Installation

  • Download the latest version from the Releases section;
  • Choose a binary file which matches your platform;
  • Place the binary into your user's binary path;
  • Optionally: rename gg-${YOUR_PLATFORM_TYPE} to gg.

2. Functional preview

2.1. Edit and connect to a remote box

Small demo where we open ssh session using goto

2.2. Duplicate an existing record

Small demo where duplicate an existing record in goto database

2.3. Find a requried host easily among all your records

Small demo where we open ssh session using goto

3. Configuration

3.1. Command line options

  • -f - application home folder;
  • -l - log verbosity level. Only info(default) or debug values are currently supported;
  • -v - display version and configuration details.

3.2. Environment variables

  • GG_HOME - application home folder;
  • GG_LOG_LEVEL - log verbosity level. Only info(default) or debug values are currently supported.

4. File storage structure

Currently you can only store your hosts in a yaml file, which is called hosts.yaml. The file is located in your user config folder which exact path depends on a running platform:

  • on Linux, it's in $XDG_CONFIG_HOME/goto or $HOME/.config/goto;
  • on Mac, it's in $HOME/Library/Application Support/goto;
  • on Windows, it's in %AppData%\goto.

Usually you don't need to edit this file manually, but sometimes it's much more convenient to edit it into your favorite text editor, than using goto utility. The file structure is very simple and self-explanatory:

- host:
    title: kernel.org
    description: Server 1
    address: 127.0.0.1
- host:
    title: microsoft.com
    description: Server 2
    address: 127.0.0.1
    network_port: 22
    username: satya
    identity_file_path: /home/user/.ssh/id_rsa_microsoft

5. Known problems

  • User input validators do not exist;
  • There is no confirmation dialog when you delete an existing item from the database;
  • On Windows platform, when ssh session exits with non-zero code the application UI breaks;
  • Maybe some other things as the utility hasn't even reached a stable version.

6. Changelog

v0.2.0

  • The Application supports environment and command line parameters [details].
  • Fix terminal resizing problem on Windows platform [details].

v0.1.2

  • Resolve a problem with dissapearing host list when filter is enabled and a user is modifying the collection [details].

v0.1.1

  • Fix a focusing issue when saving an existing item using a different title [details].

License

MIT