aboutsummaryrefslogtreecommitdiff
path: root/index.sh
diff options
context:
space:
mode:
Diffstat (limited to 'index.sh')
-rw-r--r--index.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/index.sh b/index.sh
new file mode 100644
index 0000000..8650d4e
--- /dev/null
+++ b/index.sh
@@ -0,0 +1,12 @@
+# Generate index.md file
+
+echo '# Julian Noter'
+echo
+
+# Make toc
+HTML_FILES=$@
+
+for url in $HTML_FILES; do
+ echo "- [$url]($url)"
+done
+