rust-lang-zh_CN/append_end.sh

7 lines
217 B
Bash
Raw Normal View History

2025-01-10 07:35:51 +08:00
#!/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