Chunked HTTP downloader with resume support. A modern, cross-platform implementation with improved state management and progress tracking. Or install directly: go install github.com/redraw/rapel@latest Download a file with default settings (100MB chunks, 1 concurrent job): rapel download https://example.com/file.bin Download with custom chunk size and multiple concurrent downloads: rapel download https://example.com/file.bin -c 50M --jobs 4 Download through a proxy: rapel download https://example.com/file.bin -x socks5h://127.0.0.1:9050 Download and auto-merge: rapel download https://example.com/file.bin --merge Run command after each chunk completes: rapel download https://example.com/file.bin --post-part 'rclone move {part} remote:bucket/' Merge chunk files manually: rapel merge # Auto-detects output name rapel merge --pattern 'file.*.part' # Auto-detects as "file" rapel merge -o output.bin --delete # Explicit name, delete after merge JSON state management: Single .rapel-state.json file tracks all chunk metadata Graceful shutdown: Ctrl+C saves progress and allows resume Better progress display: Real-time speed, completion status with ANSI formatting Cross-platform: Works on Linux (amd64, arm64, arm v6/v7), macOS (Intel/Apple Silicon), Windows, and FreeBSD Raspberry Pi support: Native ARM v7 and v6 binaries for all Raspberry Pi models Resume support: Automatically resumes interrupted downloads Concurrent downloads: Download multiple chunks simultaneously Post-part hooks: Run custom commands after each chunk completes (e.g., upload to cloud) Smart merging: Auto-detects output filename and handles multiple download sessions Download command: -c SIZE Chunk size (K, M, G suffix). Default: 100M -x URL Proxy URL (e.g., socks5h://127.0.0.1:9050) -r N Retries per request. Default: 10 --no-head Skip HEAD request (requires --size) --size BYTES Total size in bytes (required if --no-head) --jobs N Concurrent chunks. Default: 1 --force Force re-download even if state exists --m...
First seen: 2026-05-27 00:41
Last seen: 2026-05-27 01:42