aboutsummaryrefslogtreecommitdiff
path: root/makeDoc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makeDoc.sh')
-rwxr-xr-xmakeDoc.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/makeDoc.sh b/makeDoc.sh
index 556969f..05f7c16 100755
--- a/makeDoc.sh
+++ b/makeDoc.sh
@@ -1,5 +1,6 @@
+#!/usr/bin/env bash
rm -f document.md
- array=("Building-and-running-explained.txt" "Makefile-explained.txt" "Project-structure-explained.txt" "Boot-explained.txt" "MMU-explained.txt" "PSRs-explained.txt" "Ramfs-explained.txt" "Exception-vector-explained.txt" "IRQ-explained.txt" "processor-modes-explained.txt" "Scheduler-explained.txt" "Linker-scripts-explained.txt")
+ array=("Building-and-running-explained.txt" "Makefile-explained.txt" "Project-structure-explained.txt" "Boot-explained.txt" "MMU-explained.txt" "PSRs-explained.txt" "Ramfs-explained.txt" "Exception-vector-explained.txt" "IRQ-explained.txt" "processor-modes-explained.txt" "Scheduler-explained.txt" "Linker-scripts-explained.txt" "Sources.txt")
echo "# Raspberry PI MMU project" >> document.md
echo "//TODO insert [TOC] here" >> document.md
for file in "${array[@]}"