-
Notifications
You must be signed in to change notification settings - Fork 17
/
muffet.sh
31 lines (29 loc) · 2.22 KB
/
muffet.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env bash
# Automatic generated, DON'T MODIFY IT.
# @option --accepted-status-codes <codes> Accepted HTTP response status codes (default: 200..300)
# @option -b --buffer-size <size> HTTP response buffer size in bytes (default: 4096)
# @option -c --max-connections <count> Maximum number of HTTP connections (default: 512)
# @option --max-connections-per-host <count> Maximum number of HTTP connections per host (default: 512)
# @option --max-response-body-size <size> Maximum response body size to read (default: 10000000)
# @option -e --exclude* <pattern> Exclude URLs matched with given regular expressions
# @option -i --include* <pattern> Include URLs matched with given regular expressions
# @flag --follow-robots-txt Follow robots.txt when scraping pages
# @flag --follow-sitemap-xml Scrape only pages listed in sitemap.xml (deprecated)
# @option --header* <header> Custom headers
# @flag -f --ignore-fragments Ignore URL fragments
# @option --format[text|json|junit] Output format (default: text)
# @flag --json Output results in JSON (deprecated)
# @flag --experimental-verbose-json Include successful results in JSON (deprecated)
# @flag --junit Output results as JUnit XML file (deprecated)
# @option -r --max-redirections <count> Maximum number of redirections (default: 64)
# @option --rate-limit <rate> Max requests per second
# @option -t --timeout <seconds> Timeout for HTTP requests in seconds (default: 10)
# @flag -v --verbose Show successful results too
# @option --proxy <host> HTTP proxy host
# @flag --skip-tls-verification Skip TLS certificate verification
# @flag --one-page-only Only check links found in the given URL
# @option --color[auto|always|never] Color output (default: auto)
# @flag -h --help Show this help
# @flag --version Show version
# @arg url!
command eval "$(argc --argc-eval "$0" "$@")"