Skip to content

Instantly share code, notes, and snippets.

@ifnull
Created September 24, 2013 21:17
Show Gist options
  • Save ifnull/6691390 to your computer and use it in GitHub Desktop.
Save ifnull/6691390 to your computer and use it in GitHub Desktop.
Zero out a directory of images by replacing with 1x1 image
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