dt_automate/vendor/github.com/Esword618/unioffice/update-godoc.sh
2025-02-26 23:15:11 +08:00

8 lines
218 B
Bash

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