Initial re-upload

This commit is contained in:
2024-08-28 23:39:19 -04:00
commit 570f9247c2
12 changed files with 907 additions and 0 deletions

10
patch_pages Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
shopt -s globstar
# Patch html
read -p "This action may modify all .html files at '$PWD'"
for html in **/*.html ; do
# Override relative links to open in current tab instead
sed -i 's~href="patcher/" target="_blank"~href="patcher/"~g' "$html"
done