Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sanpang
/
Lagent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d3b24d6
Lagent
/
docs
/
zh_cn
/
cp_origin_docs.sh
sanpang
add file
d3b24d6
4 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
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