qs 0.2.1

Quick SSH - Dead simple, zero-friction SSH wrapper that makes working with remote machines effortless
Documentation
# qs - Quick SSH

Dead simple, zero-friction SSH wrapper that makes working with remote machines effortless. Automatic multiplexing, easy file transfers, no password hassles.

## Features

- **One-time setup**: Add a host once, never type passwords again
- **SSH multiplexing**: First connection opens, rest are instant
- **Simple file transfer**: `qs send file.txt /remote/` - that's it
- **Smart defaults**: Works without specifying hosts
- **Cross-platform**: macOS and Linux

## Prerequisites

- **Rust/Cargo** - [Install Rust]https://rustup.rs/
- **SSH** - OpenSSH client (`ssh`, `ssh-keygen`)
- **rsync** - For file transfers

## Installation

```bash
cargo install qs
```

## Usage Example

```bash
# Setup (one time)
qs init                                                   # Create SSH keys
qs add myserver --host 192.168.1.100 --user bob           # Add profile with alias 'myserver'
qs add dev --host 192.168.1.100 --user alice --port 2222  # Add with custom SSH port

# Daily use (no passwords!)
qs connect                               # SSH to default profile
qs send project.tar.gz /tmp/             # Upload file
qs get /var/log/app.log ./               # Download file
qs exec "docker ps"                      # Run remote command

# Host management
qs list                                  # Show all profiles
qs remove myserver                       # Remove profile by the alias 'myserver'
qs set-default myserver                  # Set 'myserver' as default
```

For detailed usage and examples, see [USAGE.md](USAGE.md).

## Why?

Because `ssh user@192.168.1.100` and `scp -r ./folder user@192.168.1.100:/path/to/dest/` gets old fast.

With qs, it's just `qs connect` and `qs send folder /path/to/dest/`.