#!/bin/bash # Runs the Validate External Links script # Arguments: --help, --links URL, --exceptions URL, --output DIR, --record-ok-links, --show-added-slashes, # --show-https-upgrades, --show-yt-redirects, --suggest-snapshots, --skip-archive-links, --take-screenshots FILE, # --timeout NUM, --start-url NUM, --end-url NUM, --upload FILE # Recommended rule: # |----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ---| # Set variables for any arguments we might use below VALEXTLINKS="/path/to/Validate External Links/validate_external_links.sh" LINKS_LOCAL="file:///path/to/Validate External Links/Sample files/extlinks.csv" LINKS_ONLINE="https://wiki.oni2.net/w/extlinks.csv" EXCEPT_LOCAL="file:///path/to/Validate External Links/exceptions.txt" EXCEPT_ONLINE="https://wiki.oni2.net/Validate_External_Links/Exceptions" REPORT_DIR="/path/to/where/you/want/Val Reports" UPLOAD_INFO="/path/to/Validate External Links/sftp_login.txt" CHROME="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" # Run with end URL, record OK codes, and don't upload #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --end-url 70 # Run with start/end URLs, record OK codes, and don't upload #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --start-url 1920 --end-url 1930 # Run with local extlinks and exceptions, start/end URLs, record OK codes, and don't upload #bash "$VALEXTLINKS" --links "$LINKS_LOCAL" --exceptions "$EXCEPT_LOCAL" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --skip-archive-links --start-url 1 --end-url 25 # Run with unfinished screenshot feature, no upload #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --take-screenshots "$CHROME" # Normal run with no upload #bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots --skip-archive-links --timeout 20 # Normal run bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots --skip-archive-links --timeout 20 --upload "$UPLOAD_INFO"