-
-
Save okineadev/17439fffd23089972760b8064ec5e8a5 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/OWNER/REPO | grep -oE 'https://camo[^"]+' | while read i; do curl -X PURGE "$i"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment