Updated src/ALL.md.

This commit is contained in:
Hector PENG
2025-01-10 07:43:17 +08:00
parent 18c3be7f80
commit bdfaaa532a
59 changed files with 296 additions and 0 deletions

6
append_end.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
PWD="$(pwd)"
for f in $(find "src/" -type f -name "*.md" ); do
if [[ "${f}" == *"SUMMARY"* ]] || [[ "${f}" == *"README"* ]]; then continue; fi
echo -e "\n\nEnd\n\n" >> "$PWD/$f"
done