mq

(★ 1,010)

A jq-like Markdown query language for command-line processing

File Explorer

  • .dockerignore
  • .envrc
  • .gitattributes
  • .gitignore
  • .tool-versions
  • .typos.toml
  • .vercelignore
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CLAUDE.md
  • context7.json
  • CONTRIBUTING.md
  • deny.toml
  • Dockerfile
  • Dockerfile.vercel
  • flake.lock
  • flake.nix
  • justfile
  • LICENSE
  • README.md
  • rust-toolchain.toml
  • rustfmt.toml
  • task.md
  • vercel.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

cargo binstall

View Details ▼

Install Rust binaries from CI artifacts.
Falls back to `cargo install` (from source code) if there are no binaries available.
Note: This is not a built-in Cargo command, you need to install it first.

cargo binstall {{package}}

Install a package from <https://crates.io>:

cargo binstall {{package}}@{{version}}

Install a specific version of a package (latest by default):

cargo binstall {{[-y|--no-confirm]}} {{package}}

Install a package and disable confirmation prompts:

🔍

cargo install

View Details ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

http

View Details ▼

HTTPie: an HTTP client designed for testing, debugging, and generally interacting with APIs and HTTP servers.
See also: `xh`.

http {{https://example.com}}

Make a simple GET request (shows response headers and content):

http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}

Print specific parts of the content (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata):

http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}

Specify the HTTP method when sending a request and use a proxy to intercept the request:

🔍

yay

View Details ▼

Yet Another Yogurt: build and install packages from the Arch User Repository.
See also: `pacman`.

yay {{package_name|search_term}}

Interactively search and install packages from the repos and AUR:

yay

Synchronize and update all packages from the repos and AUR:

yay -S {{package}} --noconfirm

Install a new package from the repos and AUR and do not ask to confirm transactions:

🔍

QUERY

View Details ▼

Display information about user sessions and process.

query session

Display all user sessions:

query session /server:{{hostname}}

Display the current user sessions on a remote computer:

query user

Display logged in users:

// repository documentation