Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #101

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ getallurls (gau) fetches known URLs from AlienVault's [Open Threat Exchange](htt
Examples:

```bash
$ printf example.com | gau
$ cat domains.txt | gau --threads 5
$ gau example.com google.com
$ gau --o example-urls.txt example.com
$ gau --blacklist png,jpg,gif example.com
printf example.com | gau
cat domains.txt | gau --threads 5
gau example.com google.com
gau --o example-urls.txt example.com
gau --blacklist png,jpg,gif example.com
```

To display the help for the tool use the `-h` flag:

```bash
$ gau -h
gau -h
```

| Flag | Description | Example |
Expand Down Expand Up @@ -55,7 +55,7 @@ An example configuration file can be found [here](https://github.com/lc/gau/blob
## Installation:
### From source:
```
$ go install github.com/lc/gau/v2/cmd/gau@latest
go install github.com/lc/gau/v2/cmd/gau@latest
```
### From github :
```
Expand All @@ -69,8 +69,8 @@ gau --version;
You can download the pre-built binaries from the [releases](https://github.com/lc/gau/releases/) page and then move them into your $PATH.

```bash
$ tar xvf gau_2.0.6_linux_amd64.tar.gz
$ mv gau /usr/bin/gau
tar xvf gau_2.0.6_linux_amd64.tar.gz
mv gau /usr/bin/gau
```

### From Docker:
Expand Down