MMOCR / docs /zh_cn /cp_origin_docs.sh
tomofi's picture
Add application file
2366e36
raw
history blame
No virus
232 Bytes
#!/usr/bin/env bash
# Copy *.md files from docs/ if it doesn't have a Chinese translation
for filename in $(find ../en/ -name '*.md' -printf "%P\n");
do
mkdir -p $(dirname $filename)
cp -n ../en/$filename ./$filename
done