mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
19 lines
636 B
Bash
Executable file
19 lines
636 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
returncode=0
|
|
|
|
# Parse default routes
|
|
grep -roh "^ *default: .*" ./pages | awk '{print $2}' | tr -d "'" | sort | uniq > .known_pages
|
|
|
|
# Parse aliases
|
|
grep -rh "^---$" ./pages -B 50 | grep "^ *\- '/" | awk '{print $2}' | tr -d "'" | sort | uniq >> .known_pages
|
|
|
|
# Find all markdown links and generate a list of filename.md:N:linktarget (with N the line number)
|
|
|
|
while IFS= read -r LINK; do
|
|
PAGE=$(echo "$LINK" | awk -F: '{print $3}' | tr -d ']()/')
|
|
grep -qw "$PAGE" ./.known_pages || { echo "$LINK"; returncode=1; }
|
|
done < <(grep -nr -o -E "\]\(\/?(\w|-)+\)" ./pages)
|
|
|
|
exit $returncode
|