English | 简体中文 |
ssher is an easy-to-use command line tool for connecting to remote servers.
cargo install
cargo install ssher
For MacOS or Linux:
curl -sSL https://github.com/poneding/ssher-rs/raw/master/install.sh | sh
For Windows:
Download the lastest executable from Releases and add it to the PATH.
ssher
ssher -s <server>
ssher add
# remove, rm
ssher rm
ssher rm <server_a> <server_b>
# list, ls
ssher ls
ssher rename
ssher rename <server_a>
ssher edit
ssher edit <server>
# version, v
ssher v
ssher help
# bash
source <(ssher completion bash)
source <(COMPLETE=bash ssher)
# zsh
source <(ssher completion zsh)
source <(COMPLETE=bash zsh)
# fish
ssher completion fish | source
source (COMPLETE=fish ssher | psub)
# powershell
ssher completion powershell > ssher.ps1
. .\ssher.ps1
$env:COMPLETE = "powershell"
ssher | Out-String | Invoke-Expression
You can add the command to your shell’s profile e.g.
~/.bashrc
or~/.zshrc
to enable completions for each session.
The configuration file is saved in the ~/.ssher.yaml
file.
source <(COMPLETE=bash ssher)
:$ source <(COMPLETE=bash ssher)
error: Broken pipe (os error 32)
Solutions:
brew install bash
COMPLETE=bash ssher > .ssher_bash_completion.sh
source .ssher_bash_completion.sh