Allows you to SSH into servers and mount file systems by name.
Linux only.
-
Install directly from the repo using Go:
go install https://github.com/patrickkdev/gossh@latest
-
Ensure the go bin directory is in your path
export PATH="$HOME/go/bin:$PATH"
-
Run gossh
gossh
OBS: In order to mount file systems it is necessary to have sshfs installed
Add a server
gossh add <server_name> <username@ip>
# Ex: gossh add my_new_vps root@100.50.100.30List available servers
gossh listSSH into a server
gossh <server_name>
# Ex: gossh my_new_vpsMount a server's file system
gossh fs <server_name>
# Ex: gossh fs my_new_vpsRemove a server from the list:
gossh remove <server_name>
# Ex: gossh remove my_new_vps