Skip to content

Commit c834df2

Browse files
kfetclaude
andcommitted
Add ripgrep installation and usage guide for macOS
🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 80efaac commit c834df2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

shell/ripgrep.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Installing and Using Ripgrep on macOS
2+
3+
## Installation
4+
5+
```bash
6+
brew install ripgrep
7+
```
8+
9+
## Basic Usage
10+
11+
Search for pattern in current directory:
12+
```bash
13+
rg "pattern"
14+
```
15+
16+
Search in specific file or directory:
17+
```bash
18+
rg "pattern" path/to/file
19+
rg "pattern" path/to/directory
20+
```

0 commit comments

Comments
 (0)