Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chipsleep
/
hgagent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4b0ab33
hgagent
/
docs
/
zh_cn
/
cp_origin_docs.sh
Chisleep
update01
f8d0193
about 1 month 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