Docs & Organization

This commit is contained in:
2022-06-28 16:44:57 +00:00
parent 27bfbdd433
commit 8ae54b2a2b
4 changed files with 126 additions and 0 deletions

13
tools/hthelp Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
DOCE=/usr/bin/amfora
DOC=/var/gemini/docs/help.gmi
if [ ! -f "$DOC" ]; then
echo "Helpdoc missing!"
exit 1
fi
if [ -f "$DOCE" ]; then
$DOCE "gemini.hackers.town/docs/help.gmi"
else
$EDITOR $DOC
fi