Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dstars
/
lagent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
234af2d
lagent
/
docs
/
zh_cn
/
cp_origin_docs.sh
dstars
Add files
54208df
3 months ago
raw
Copy download link
history
blame
Safe
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