A simple SSH connection manager for lazy people.
Linux / macOS / WSL:
curl -fsSL https://raw.githubusercontent.com/DrianeDiojanPerez/lazyssh/refs/heads/master/install.sh | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/DrianeDiojanPerez/lazyssh/refs/heads/master/install.ps1 | iexDownload the appropriate binary for your system from the releases page:
Linux:
# Download for your architecture
wget https://github.com/DrianeDiojanPerez/lazyssh/releases/latest/download/lazyssh_Linux_x86_64.tar.gz
# Extract
tar -xzf lazyssh_Linux_x86_64.tar.gz
# Install globally
sudo mv lazyssh /usr/local/bin/
sudo chmod +x /usr/local/bin/lazysshWindows:
# Download the zip file from releases page
# Extract it
# Move lazyssh.exe to a folder in your PATHAfter installation, simply run:
lazysshOr check available options:
lazyssh --helpTo update to the latest version, just run the installation command again:
# Linux/macOS
curl -fsSL https://raw.githubusercontent.com/DrianeDiojanPerez/lazyssh/refs/heads/master/install.sh | bash
# Windows
irm https://raw.githubusercontent.com/DrianeDiojanPerez/lazyssh/refs/heads/master/install.ps1 | iexThe installer will detect if you're already up to date.
- Linux: x86_64, ARM64
- Windows: x86_64
Linux/macOS:
sudo rm /usr/local/bin/lazysshWindows:
Remove-Item "$env:USERPROFILE\bin\lazyssh.exe"# Clone the repository
git clone https://github.com/DrianeDiojanPerez/lazyssh.git
cd lazyssh
# Build (requires Go)
go build -o lazyssh
# Install
sudo mv lazyssh /usr/local/bin/Contributions are welcome! Please feel free to submit a Pull Request.
If you encounter any issues:
- Check the issues page
- Create a new issue with details about your system and the problem
