Skip to content

Instantly share code, notes, and snippets.

@jph00
Last active November 23, 2025 23:46
Show Gist options
  • Select an option

  • Save jph00/6352b377a97d5feaa97b5112f573c644 to your computer and use it in GitHub Desktop.

Select an option

Save jph00/6352b377a97d5feaa97b5112f573c644 to your computer and use it in GitHub Desktop.
Install bore.pub
#!/bin/bash
ARCH=$(uname -m | sed 's/x86_64/x86_64/;s/aarch64/aarch64/;s/arm64/aarch64/;s/arm.*/arm/')
OS=$(uname -s | tr '[:upper:]' '[:lower:]' | sed 's/darwin/apple-darwin/;s/linux/unknown-linux-musl/')
URL=$(curl -s "https://latest.fast.ai/latest/ekzhang/bore/${ARCH}-${OS}.tar.gz")
curl -sL "$URL" | tar xz && echo "bore downloaded and extracted"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment