blob: 5094b8f6209accf7b0f74b429b21cc5bd48307b4 (
about) (
plain)
1
2
3
4
5
6
7
8
|
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")
echo "# Raspberry PI MMU project" >> document.md
echo "[TOC]" >> document.md
for file in "${array[@]}"
do
cat $file >> document.md
done
|