Results for run

11 tools · 10 with a matching recipe

timeout (coreutils)

CLI

Run 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 recipes
system3 recipes · 3 verified

just

CLI

A handy way to save and run project-specific commands.

Run a recipe~98% est.
just build+1 more matching recipe
dev-tools3 recipes

ollama

CLI

Run large language models locally (Llama, Mistral, Gemma, etc.).

Pull and run a model~96% est.
ollama run llama3+1 more matching recipe
ai-ml4 recipes

docker

CLI

Build, run, and manage containers from the CLI.

Run container with port mapping~97% est.
docker run -p 3000:3000 --rm myapp:latest
cloud4 recipes

gh

CLI

GitHub'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 recipes
git9 recipes · 6 verified

ansible

CLI

Agentless automation for configuration management and deployments.

Run a playbook~94% est.
ansible-playbook deploy.yml -i inventory.ini+1 more matching recipe
cloud3 recipes

psql

CLI

PostgreSQL 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 recipe
data4 recipes · 4 verified

sqlite3

CLI

Command-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 recipe
data5 recipes · 5 verified

task

CLI

A task runner / simpler Make alternative written in Go.

Run a task~98% est.
task build+1 more matching recipe
dev-tools3 recipes

watchexec

CLI

Executes commands in response to file modifications.

Run build on TypeScript change~96% est.
watchexec -e ts -- pnpm build
dev-tools3 recipes

duckdb

CLI

In-process analytical SQL database engine.

data2 recipes