Skip to content

Instantly share code, notes, and snippets.

@eggplants
Created September 3, 2023 01:39
Show Gist options
  • Save eggplants/bcd34fc8046bfcf112a720dc8eb583af to your computer and use it in GitHub Desktop.
Save eggplants/bcd34fc8046bfcf112a720dc8eb583af to your computer and use it in GitHub Desktop.
How to remove all cache of camo image icons in GitHub images
#!/usr/bin/env bash
curl -s https://github.com/... | grep -oE 'https://camo[^"]+' | while read i;do curl -X PURGE "$i";echo;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment