Created
September 24, 2013 21:17
-
-
Save ifnull/6691390 to your computer and use it in GitHub Desktop.
Zero out a directory of images by replacing with 1x1 image
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
for f in /usr/share/backgrounds/*.png | |
do | |
curl http://placehold.it/1.png -o $f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment