mmocr/docs_zh_CN/cp_origin_docs.sh
Tong Gao dc6d957967
[Feature] Avoid dupliate placeholder docs in CN (#582)
* [Feature] Avoid dupliate placeholder docs in CN

* add changelog to cn docs
2021-11-12 14:40:12 +08:00

10 lines
236 B
Bash
Executable File

#!/usr/bin/env bash
# Copy *.md files from docs/ if it doesn't have a Chinese translation
for filename in $(find ../docs/ -name '*.md' -printf "%P\n");
do
mkdir -p $(dirname $filename)
cp -n ../docs/$filename ./$filename
done