hgagent / docs /zh_cn /cp_origin_docs.sh
Chisleep
update01
f8d0193
raw
history blame contribute delete
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