"rssh" is a command-line tool that simplifies connecting to multiple remote hosts.
Refer to github.com/jkpeyi/rssh/blob/releases/ for latest changes.
- A Unix-based operating system (such as Linux, macOS, or BSD)
- The
sshpasspackage installed on your system - Basic knowledge of the command line
-
Download the "rssh" binary and configuration file from the project's GitHub repository to your local machine.
-
Decompress the "rssh.tar.gz" file into a "rssh" directory
-
Move the "rssh" directory to
/usr/local/share/by running the following command:
sudo mv rssh /usr/local/share/
- Add the "rssh" command to your system's PATH by editing the
.bashrcor.zshrcfile in your home directory:
echo "export PATH=$PATH:/usr/local/share/rssh" >> ~/.bashrc
Or
echo "export PATH=$PATH:/usr/local/share/rssh" >> ~/.zshrc
- Reload your shell configuration by running the following command:
source ~/.bashrc source ~/.zshrc
If it doesn't work try aliasing the command:
alias rssh="/usr/local/share/rssh/rssh"
(In your .bashrc or .zshrc file) cf. step 4,5