unioffice/update-godoc.sh

8 lines
215 B
Bash
Raw Normal View History

2017-08-29 23:07:54 -05:00
#!/bin/bash
for file in `find . -type d -not -ipath "*git*" -print`; do
url=`echo $file | sed 's#^.#https://godoc.org/github.com/unidoc/unioffice#'`
2017-08-29 23:07:54 -05:00
echo $url
curl -s $url -o /dev/null
sleep 10
done