Skip to content

Commit

Permalink
Update exclusions.md - made all commands copyable
Browse files Browse the repository at this point in the history
  • Loading branch information
vyanovsky authored Nov 29, 2024
1 parent 81bf566 commit 327e2f5
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docs/adguard-vpn-for-linux/exclusions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,38 +19,40 @@ Each mode has its own exclusion list.

To view all exclusion-related commands, type:

`adguardvpn-cli site-exclusions -h`
adguardvpn-cli site-exclusions -h

To add a domain to the exclusion list of the current mode, type:

`adguardvpn-cli site-exclusions add %domain_name%`
adguardvpn-cli site-exclusions add %domain_name%

> Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"`
>
> Command example: `adguardvpn-cli site-exclusions add https://www.google.com/`
To remove a domain from the list of exclusions, type:

`adguardvpn-cli site-exclusions remove %domain_name%`
adguardvpn-cli site-exclusions remove %domain_name%

To view the current exclusion list, type:

`adguardvpn-cli site-exclusions show`
adguardvpn-cli site-exclusions show

To remove all exclusions, type:

`adguardvpn-cli site-exclusions clear`
adguardvpn-cli site-exclusions clear

To change the exclusion mode, type:

`adguardvpn-cli site-exclusions mode %mode_name%` (or you can just check the current mode using `adguardvpn-cli site-exclusions mode`)
adguardvpn-cli site-exclusions mode %mode_name%

(or you can just check the current mode using `adguardvpn-cli site-exclusions mode`)

where %mode_name% is `general` or `selective`.

:::note

The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example:

`adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name%`
adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name%

:::

0 comments on commit 327e2f5

Please sign in to comment.