Last active
November 23, 2025 23:46
-
-
Save jph00/6352b377a97d5feaa97b5112f573c644 to your computer and use it in GitHub Desktop.
Install bore.pub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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