downloads

Get slit.

Pre-built binaries for Linux x86_64. Three implementations — C, Rust, Go — with identical flags and behavior. Pick based on your tradeoffs.

version v0.2.5 changelog ↗ latest release
implementation file sha256
C
libc only · 151.8 MB/s
slit-c-linux-x86_64.tar.gz 7c9aaebfb8ba990bcf16527393023802fa09aed46670421a113d9b8f72b3ad7d ↓ download
C (static)
musl · fully portable
slit-c-linux-x86_64-static.tar.gz cd04ba0a0c5de33852f45b1a4505a9f18600a0716468d5595dcd7725c1c5f0ed ↓ download
Rust
ratatui · 77.5 MB/s
slit-rust-linux-x86_64.tar.gz c28dd290d153104b0ee3f00c64e01a45cadbdb45de9037dd22485afbe661b572 ↓ download
Go
bubbletea · 9.8 MB/s
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 ↗
build from source

Compile it yourself.

C
$ git clone https://github.com/clankercode/slit
$ cd slit/c
$ make
$ ./slit --version
slit v0.2.5 (c)
Rust
$ git clone https://github.com/clankercode/slit
$ cd slit/rust
$ cargo build --release
$ ./target/release/slit --version
slit v0.2.5 (rust)
Go
$ git clone https://github.com/clankercode/slit
$ cd slit/go
$ go build -o slit ./...
$ ./slit --version
slit v0.2.5 (go)

Verify your download

Download the checksums from the SHA256SUMS file published alongside each release on GitHub.

Verify with:

sha256sum -c SHA256SUMS
homebrew (linux)
brew install clankercode/slit/slit
go install
go install github.com/clankercode/slit/go@latest