Pre-built binaries for Linux x86_64. Three implementations — C, Rust, Go — with identical flags and behavior. Pick based on your tradeoffs.
| implementation | file | sha256 | |
|---|---|---|---|
|
C
|
slit-c-linux-x86_64.tar.gz | 7c9aaebfb8ba990bcf16527393023802fa09aed46670421a113d9b8f72b3ad7d | ↓ download |
|
C (static)
|
slit-c-linux-x86_64-static.tar.gz | cd04ba0a0c5de33852f45b1a4505a9f18600a0716468d5595dcd7725c1c5f0ed | ↓ download |
|
Rust
|
slit-rust-linux-x86_64.tar.gz | c28dd290d153104b0ee3f00c64e01a45cadbdb45de9037dd22485afbe661b572 | ↓ download |
|
Go
|
slit-go-linux-x86_64.tar.gz | 282e1bffec28dea0cdba9dd80fd102de6337677205fc9caafe591b12db722ad1 | ↓ download |
| package | command | |
|---|---|---|
| Go |
go install github.com/clankercode/slit/go@latest
|
|
| Rust |
git clone https://github.com/clankercode/slit && cd slit/rust && cargo install --path .
|
|
| C |
git clone https://github.com/clankercode/slit && cd slit/c && make && sudo cp slit /usr/local/bin/
|
view source ↗ |
$ git clone https://github.com/clankercode/slit $ cd slit/c $ make $ ./slit --version slit v0.2.5 (c)
$ git clone https://github.com/clankercode/slit $ cd slit/rust $ cargo build --release $ ./target/release/slit --version slit v0.2.5 (rust)
$ git clone https://github.com/clankercode/slit $ cd slit/go $ go build -o slit ./... $ ./slit --version slit v0.2.5 (go)
Download the checksums from the SHA256SUMS file published alongside each release on GitHub.
Verify with:
sha256sum -c SHA256SUMS
brew install clankercode/slit/slit
go install github.com/clankercode/slit/go@latest