[1139] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | # Runs the Validate External Links script
|
---|
| 4 | # Arguments: --help, --links URL, --exceptions URL, --output DIR, --record-ok-links, --show-added-slashes,
|
---|
[1147] | 5 | # --show-https-upgrades, --show-yt-redirects, --suggest-snapshots-ng, --suggest-snapshots-ok,
|
---|
| 6 | # --check-archive-links, --take-screenshots FILE, --timeout NUM, --start-url NUM, --end-url NUM, --upload FILE
|
---|
[1139] | 7 | # Recommended rule:
|
---|
| 8 | # |----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ---|
|
---|
| 9 |
|
---|
| 10 | # Set variables for any arguments we might use below
|
---|
| 11 | VALEXTLINKS="/path/to/Validate External Links/validate_external_links.sh"
|
---|
| 12 | LINKS_LOCAL="file:///path/to/Validate External Links/Sample files/extlinks.csv"
|
---|
| 13 | LINKS_ONLINE="https://wiki.oni2.net/w/extlinks.csv"
|
---|
| 14 | EXCEPT_LOCAL="file:///path/to/Validate External Links/exceptions.txt"
|
---|
| 15 | EXCEPT_ONLINE="https://wiki.oni2.net/Validate_External_Links/Exceptions"
|
---|
| 16 | REPORT_DIR="/path/to/where/you/want/Val Reports"
|
---|
| 17 | UPLOAD_INFO="/path/to/Validate External Links/sftp_login.txt"
|
---|
| 18 | CHROME="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
|
---|
| 19 |
|
---|
| 20 |
|
---|
[1182] | 21 | # Run with start/end URLs, record OK codes, and don't upload
|
---|
| 22 | #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots-ng --timeout 10 --show-https-upgrades --show-added-slashes --show-yt-redirects --start-url 445 --end-url 451
|
---|
[1139] | 23 |
|
---|
[1157] | 24 | # Run with start/end URLs, record OK codes, suggest OK snapshots, and don't upload
|
---|
[1182] | 25 | #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots-ng --suggest-snapshots-ok --timeout 10 --show-https-upgrades --show-added-slashes --show-yt-redirects --start-url 445 --end-url 451
|
---|
[1139] | 26 |
|
---|
| 27 | # Run with local extlinks and exceptions, start/end URLs, record OK codes, and don't upload
|
---|
[1147] | 28 | #bash "$VALEXTLINKS" --links "$LINKS_LOCAL" --exceptions "$EXCEPT_LOCAL" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots-ng --start-url 1810 --end-url 1815
|
---|
[1139] | 29 |
|
---|
| 30 | # Run with unfinished screenshot feature, no upload
|
---|
| 31 | #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --take-screenshots "$CHROME"
|
---|
| 32 |
|
---|
[1182] | 33 | # Normal run with no upload, snapshot suggestions, https upgrades or added slashes
|
---|
| 34 | #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --timeout 10
|
---|
| 35 |
|
---|
[1139] | 36 | # Normal run with no upload
|
---|
[1184] | 37 | #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots-ng --timeout 10 --show-https-upgrades --show-added-slashes --show-yt-redirects
|
---|
[1139] | 38 |
|
---|
| 39 | # Normal run
|
---|
[1182] | 40 | bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots-ng --timeout 10 --show-https-upgrades --show-added-slashes --show-yt-redirects --upload "$UPLOAD_INFO"
|
---|