Quick Start
This guide walks you through installing Cinch, authenticating, and moving your first clip end-to-end.
-
Install the CLI
Terminal window curl -fsSL https://cinchcli.com/install.sh | shThis installs the
cinchbinary to/usr/local/bin.Terminal window docker run -d -p 8080:8080 -v cinch-data:/data \ghcr.io/cinchcli/relay:latestVerify the install:
Terminal window cinch version -
Sign in
Terminal window cinch auth loginA browser window opens. Sign in with GitHub or Google.
-
Push your first clip
On machine A:
Terminal window echo "hello from $(hostname)" | cinch push# → ✓ Pushed 28 B -
Pull it on the other end
On machine B (also signed in):
Terminal window cinch pull# → hello from my-serverOr pipe directly to the clipboard:
Terminal window cinch pull | pbcopy # macOScinch pull | xclip # Linux (X11) -
Pair a remote machine (optional)
To set up cinch on a remote server in one command — SSH in, install, and pair:
Terminal window cinch pair user@remotehost
What’s next?
Section titled “What’s next?”- Install the desktop app to have every push land in your Mac clipboard automatically.
- See the full CLI Reference for all flags.
- Self-host the relay if you want your data on your own server.
Was this page helpful?