mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
7 lines
206 B
Bash
7 lines
206 B
Bash
![]() |
#!/bin/bash
|
||
|
for file in `find . -type d -not -ipath "*git*" -print`; do
|
||
|
url=`echo $file | sed 's#^.#https://godoc.org/baliance.com/gooxml#'`
|
||
|
echo $url
|
||
|
curl -s $url -o /dev/null
|
||
|
sleep 10
|
||
|
done
|