iceberg.sh

The copy-paste bridge between machines. No auth, no keys, no setup — send it right now.

Install

curl -fsSL https://iceberg.sh/install.sh | sh

Send & receive

# on one machine — pipe anything in
echo "hi from my laptop" | iceberg push my-topic

# on any other machine
iceberg pull my-topic

Set a default topic

# save it once, then drop the name
iceberg topic my-topic
echo "hi" | iceberg push
iceberg pull

No CLI? curl works too

curl -d "hi" iceberg.sh/my-topic
curl iceberg.sh/my-topic