OpenCompass/docs/zh_cn/cp_origin_docs.sh
Tong Gao 4d89533fbc
[Docs] Add FAQ (#384)
* [Docs] Add FAQ

* [Docs] Add FAQ
2023-09-12 12:11:38 +08:00

10 lines
232 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 ../en/ -name '*.md' -printf "%P\n");
do
mkdir -p $(dirname $filename)
cp -n ../en/$filename ./$filename
done