mirror of
https://github.com/gnu4cn/rust-lang-zh_CN.git
synced 2025-02-26 19:30:53 +08:00
7 lines
217 B
Bash
7 lines
217 B
Bash
|
#!/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\n(End)\n\n" >> "$PWD/$f"
|
|||
|
done
|