timeout (coreutils)
CLIRun a command with a time limit. Part of GNU coreutils: built into Linux, 'gtimeout' on macOS after brew install coreutils.
Run a command with a timeout (Linux)Verified Linux
timeout 10 some-command+2 more matching recipessystem3 recipes · 3 verified
just
CLIA handy way to save and run project-specific commands.
Run a recipe~98% est.
just build+1 more matching recipedev-tools3 recipes
ollama
CLIRun large language models locally (Llama, Mistral, Gemma, etc.).
Pull and run a model~96% est.
ollama run llama3+1 more matching recipeai-ml4 recipes
docker
CLIBuild, run, and manage containers from the CLI.
Run container with port mapping~97% est.
docker run -p 3000:3000 --rm myapp:latestcloud4 recipes
gh
CLIGitHub's official CLI for managing repos, PRs, issues, and more.
Show recent CI runsVerified macOS
gh run list --repo OWNER/REPO --limit 3 --json status,conclusion,name+2 more matching recipesgit9 recipes · 6 verified
ansible
CLIAgentless automation for configuration management and deployments.
Run a playbook~94% est.
ansible-playbook deploy.yml -i inventory.ini+1 more matching recipecloud3 recipes
psql
CLIPostgreSQL interactive terminal, used non-interactively for one-shot queries and scripts.
Run one query and print only the valueVerified macOS · Linux
psql "$DATABASE_URL" -Atc 'SELECT count(*) FROM tools'+1 more matching recipedata4 recipes · 4 verified
sqlite3
CLICommand-line shell for SQLite databases. Preinstalled on macOS; apt install sqlite3 on Linux.
Run a query with column headersVerified macOS · Linux
sqlite3 -header -column app.db 'SELECT * FROM users LIMIT 5'+1 more matching recipedata5 recipes · 5 verified
task
CLIA task runner / simpler Make alternative written in Go.
Run a task~98% est.
task build+1 more matching recipedev-tools3 recipes
watchexec
CLIExecutes commands in response to file modifications.
Run build on TypeScript change~96% est.
watchexec -e ts -- pnpm builddev-tools3 recipes
duckdb
CLIIn-process analytical SQL database engine.
data2 recipes