Command-line tool for managing and running multiple processes.
Dual-licensed under MIT or the UNLICENSE.
Homebrew (macOS / Linux):
brew install lkurcak/tap/tendWinget (Windows):
winget install lkurcak.tendSnapcraft:
sudo snap install tendBinary: Download
Cargo:
cargo install tend --locked# Create a job
tend create "hello" ping 8.8.8.8
# Run it
tend run hello
# View all jobs
tend listPress Ctrl-C to stop all jobs.
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%"