Skip to content

Instantly share code, notes, and snippets.

@rindeal
Created May 11, 2018 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rindeal/94f70761eae98a1856e78be2064c9d41 to your computer and use it in GitHub Desktop.
Save rindeal/94f70761eae98a1856e78be2064c9d41 to your computer and use it in GitHub Desktop.
GitHub Camo (Varnish cache) Purge
#/bin/sh
curl -so - https://github.com/... | \
pup 'img attr{src}' | \
awk '/:\/\/camo.githubusercontent.com\// { if ( !cache[$0] ) { print; cache[$0]=1; } }' | \
xargs curl -X PURGE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment