unioffice/update-godoc.sh
2017-08-29 23:12:33 -05:00

7 lines
206 B
Bash
Executable File

#!/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