tend

Crates.iotend
lib.rstend
version0.2.21
created_at2024-04-25 09:37:30.637331+00
updated_at2025-11-20 19:30:59.631087+00
descriptionCommand-line tool for managing and running multiple processes
homepage
repositoryhttps://github.com/lkurcak/tend
max_upload_size
id1219968
size78,649
Ľubomír Kurčák (lkurcak)

documentation

README

tend

Build status Crates.io WinGet Package Version Snapcraft

Command-line tool for managing and running multiple processes.

Dual-licensed under MIT or the UNLICENSE.

Installation

Homebrew (macOS / Linux):

brew install lkurcak/tap/tend

Winget (Windows):

winget install lkurcak.tend

Snapcraft:

sudo snap install tend

Binary: Download

Cargo:

cargo install tend --locked

Quick Start

# Create a job
tend create "hello" ping 8.8.8.8

# Run it
tend run hello

# View all jobs
tend list

Press Ctrl-C to stop all jobs.

Examples

Run jobs by group:

tend create "postgres" --group="dev" kubectl port-forward svc/postgres 5432:5432
tend run --group "dev"

Run any command available in your shell:

# Linux
tend create "time" sh -- -c 'echo Time: $(date)'

# Windows
tend create "time" cmd -- /C "echo Time: %TIME%"
Commit count: 0

cargo fmt