Created
September 3, 2023 01:39
-
-
Save eggplants/bcd34fc8046bfcf112a720dc8eb583af to your computer and use it in GitHub Desktop.
How to remove all cache of camo image icons in GitHub images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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
Thanks, I'll save it