2021-05-07 12:57:07 -04:00

24 lines
365 B
Bash

#!/bin/bash
set +x
URLs=$(export | grep URL)
#if [[ -z "${URL}" ]]
#then
# echo "Please defind a URL"
# exit 1
#fi
if [[ -z "${BUNNYCDN_API}" ]]
then
echo "Please define API_TOKEN"
exit 1
fi
for f in ${URLs | cut -d'=' -f2-)
curl -s -X POST \
-H 'AccessKey: '"${BUNNYCDN_API}"'' \
-H 'Content-Length: 0' \
'https://api.bunny.net/purge?url='"${f}"
done