tend lkurcak
Use this command to install tend:
winget install --id=lkurcak.tend -e
A command-line tool for managing and running multiple processes.
winget install --id=lkurcak.tend -e
A command-line tool for managing and running multiple processes.
Command-line tool for managing and running multiple processes.
Dual-licensed under MIT or the UNLICENSE.
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
# 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.
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%"