From d095008e8c8ae82df079d1c19247f96b48ee1eac Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Tue, 6 Jan 2026 09:05:50 -0500 Subject: [PATCH] Add UN CLI download links and quick install instructions --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 319b30c..5e35458 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,25 @@ The UN CLI written in every language it can execute. **42 implementations, one u > "If you replace every line of un.c with a different programming language, but it still executes code on unsandbox... is it still un?" +## Download UN CLI + +| Platform | Download | Size | +|----------|----------|------| +| Linux x86_64 | [un](https://unsandbox.com/downloads/un) | 850KB | +| Source (C) | [un.c](https://unsandbox.com/downloads/un.c) | 45KB | +| Man Page | [un.1](https://unsandbox.com/downloads/un.1) | - | + +```bash +# Quick install (Linux x86_64) +curl -fsSL https://unsandbox.com/downloads/un -o un && chmod +x un + +# Or build from source +curl -fsSL https://unsandbox.com/downloads/un.c -o un.c +gcc -Wall -O2 -o un un.c -lcurl -lwebsockets +``` + +Build dependencies: `libcurl-dev`, `libwebsockets-dev` + ## Quick Start ```bash