added new features

This commit is contained in:
2024-05-01 18:24:38 -06:00
parent fe2c6225b6
commit f06a540482
2 changed files with 7584 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Create a "master" document
echo "# Master Document" > master_document.md
# Iterate over each .md file in the current directory
for file in *.md; do
# Skip the master_document.md file
if [[ $file != "master_document.md" ]]; then
# Append the content of each .md file to the master_document.md
echo "## $file" >> master_document.md
cat "$file" >> master_document.md
echo "" >> master_document.md
fi
done

File diff suppressed because it is too large Load Diff