📚 Add documentation and metadata for new tools: just, rg, and xh
This commit is contained in:
@@ -3,6 +3,9 @@
|
|||||||
| Name | Alias | Cheat Sheet | Description |
|
| Name | Alias | Cheat Sheet | Description |
|
||||||
| ----- | ----- | ----- | ----- |
|
| ----- | ----- | ----- | ----- |
|
||||||
| duf | - | [CHEATSHEET.md](duf/CHEATSHEET.md) | Disk Usage/Free Utility - a better 'df' alternative |
|
| duf | - | [CHEATSHEET.md](duf/CHEATSHEET.md) | Disk Usage/Free Utility - a better 'df' alternative |
|
||||||
|
| just | - | [CHEATSHEET.md](just/CHEATSHEET.md) | 🤖 Just a command runner |
|
||||||
| mise | - | [CHEATSHEET.md](mise/CHEATSHEET.md) | dev tools, env vars, task runner |
|
| mise | - | [CHEATSHEET.md](mise/CHEATSHEET.md) | dev tools, env vars, task runner |
|
||||||
|
| rg | ripgrep | [CHEATSHEET.md](rg/CHEATSHEET.md) | ripgrep recursively searches directories for a regex pattern while respecting your gitignore |
|
||||||
| uv | - | [CHEATSHEET.md](uv/CHEATSHEET.md) | An extremely fast Python package and project manager, written in Rust. |
|
| uv | - | [CHEATSHEET.md](uv/CHEATSHEET.md) | An extremely fast Python package and project manager, written in Rust. |
|
||||||
|
| xh | ripgrep | [CHEATSHEET.md](xh/CHEATSHEET.md) | Friendly and fast tool for sending HTTP requests |
|
||||||
| zb | zerobrew | [CHEATSHEET.md](zb/CHEATSHEET.md) | A 5-20x faster experimental Homebrew alternative |
|
| zb | zerobrew | [CHEATSHEET.md](zb/CHEATSHEET.md) | A 5-20x faster experimental Homebrew alternative |
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# just
|
||||||
|
|
||||||
|
## Meta
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: just
|
||||||
|
repo: https://github.com/casey/just
|
||||||
|
description: 🤖 Just a command runner
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Sample `justfile`:
|
||||||
|
```justfile
|
||||||
|
_:
|
||||||
|
@just --list
|
||||||
|
|
||||||
|
alias p:=publish
|
||||||
|
alias pub:=publish
|
||||||
|
|
||||||
|
# Publish
|
||||||
|
publish:
|
||||||
|
update-cheatsheet.ts
|
||||||
|
commit.ts
|
||||||
|
```
|
||||||
@@ -4,16 +4,33 @@
|
|||||||
"repo": "https://github.com/muesli/duf",
|
"repo": "https://github.com/muesli/duf",
|
||||||
"description": "Disk Usage/Free Utility - a better 'df' alternative"
|
"description": "Disk Usage/Free Utility - a better 'df' alternative"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "just",
|
||||||
|
"repo": "https://github.com/casey/just",
|
||||||
|
"description": "🤖 Just a command runner"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "mise",
|
"name": "mise",
|
||||||
"repo": "https://github.com/jdx/mise",
|
"repo": "https://github.com/jdx/mise",
|
||||||
"description": "dev tools, env vars, task runner"
|
"description": "dev tools, env vars, task runner"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "rg",
|
||||||
|
"aliases": "ripgrep",
|
||||||
|
"repo": "https://github.com/burntsushi/ripgrep",
|
||||||
|
"description": "ripgrep recursively searches directories for a regex pattern while respecting your gitignore"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "uv",
|
"name": "uv",
|
||||||
"repo": "https://github.com/astral-sh/uv",
|
"repo": "https://github.com/astral-sh/uv",
|
||||||
"description": "An extremely fast Python package and project manager, written in Rust."
|
"description": "An extremely fast Python package and project manager, written in Rust."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "xh",
|
||||||
|
"aliases": "ripgrep",
|
||||||
|
"repo": "https://github.com/ducaale/xh",
|
||||||
|
"description": "Friendly and fast tool for sending HTTP requests"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "zb",
|
"name": "zb",
|
||||||
"aliases": "zerobrew",
|
"aliases": "zerobrew",
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
# rg
|
||||||
|
|
||||||
|
## Meta
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: rg
|
||||||
|
aliases: ripgrep
|
||||||
|
repo: https://github.com/burntsushi/ripgrep
|
||||||
|
description: ripgrep recursively searches directories for a regex pattern while respecting your gitignore
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ cargo install ripgrep
|
||||||
|
```
|
||||||
|
or
|
||||||
|
```shell
|
||||||
|
$ cargo binstall ripgrep
|
||||||
|
```
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
# xh
|
||||||
|
|
||||||
|
## Meta
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: xh
|
||||||
|
aliases: ripgrep
|
||||||
|
repo: https://github.com/ducaale/xh
|
||||||
|
description: Friendly and fast tool for sending HTTP requests
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user