We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc27b98 commit 7c68bf5Copy full SHA for 7c68bf5
Makefile
@@ -41,3 +41,6 @@ clean-search:
41
rm -f html/js/search.js
42
43
clean: clean-html clean-images clean-search
44
+
45
+test-links: html/links.txt
46
+ ./test-links.sh
test-links.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
3
+wget -O- -i html/links.txt -B https://docs.perl6.org --method=HEAD 2>&1 | perl -ne '$_ =~ s/(.+)\n$/$1 /; print $_' | grep -v '200 OK'
0 commit comments