> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/pentesting/tool-usage/grep.md).

# Grep

## Grep specific words in a list of files:

### Option 1

```
grep -rl "word to search" * (searrches all files in current directory)
```

### Option 2

```
grep -rl "word to search" <destination of fille/s>
```
