Added script calling examples

This commit is contained in:
Bofh 2020-11-19 22:31:05 +01:00
parent 6e0efa6a70
commit d88c317d17
1 changed files with 12 additions and 0 deletions

View File

@ -28,3 +28,15 @@ Execute the wrapper scripts located at `x/`, depending on the **action you want
This scripts can also be **called into a cron job** directly This scripts can also be **called into a cron job** directly
# Usage Examples!
```bash
./x/blist-add-alldomain google.com # block entire google.com domain
./x/blist-add-domainonly www.google.es # block only the given domain/subdomain
./x/clear-rejected-urls # clear all rejected URLS
./x/purge-by-lang fr # purge all URLs by the given language code
./x/purge-by-lang de
./x/purge-by-lang ru
./x/purge-by-regex amazon.com # purges all URLs that contains the given string in the DOMAIN part of the URL
./x/terminate-all # terminate all crawling tasks right now! (starts different crawling jobs if Auto-Crawl is ON)
```