Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 bash 脚本来部署一个使用 Fastly 作为 CDN 的静态网页。/example.html部署后,我想通过 bash 脚本中的 API 进行清除/example.html。我知道有一个很好的 Ruby gem,但我想使用bash 脚本curl或wget在 bash 脚本中进行。
/example.html
curl
wget
如何通过 Fastly API 使用curl或清除给定的 URL wget?
通过
curl -X PURGE http://www.example.com/image.jpg
正如他们的文档中所解释的那样。