# Quickstart

> rusync - Minimalist rsync

- Skill: `javimosch/quickstart-865` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/quickstart-865`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/quickstart-865/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/quickstart-865

---

# rusync - Minimalist rsync

## Overview
rusync is a minimalist rsync implementation in Rust. Fast file synchronization with rsync-like functionality.

## Quick Start

### Passthrough to rusync CLI
```bash
sc rusync _ <rusync-args>
```

## Key Features

- **Minimalist**: Lightweight rsync implementation
- **Fast**: Written in Rust for performance
- **Rsync-like**: Compatible with rsync functionality
- **Cross-platform**: Works on Linux, macOS, Windows
- **Efficient**: Efficient file synchronization

## Installation

```bash
cargo install rusync
```

## Usage Examples

### Sync directories
```bash
rusync /source /destination
```

### With verbose output
```bash
rusync -v /source /destination
```

### Dry run
```bash
rusync --dry-run /source /destination
```

### Delete files in destination
```bash
rusync --delete /source /destination
```

## Notes

- Run `rusync --help` to see all available options
- Minimalist implementation focused on core rsync features

