Skip to content

Instantly share code, notes, and snippets.

@ucnv
Created September 24, 2009 09:11
Show Gist options
  • Save ucnv/192627 to your computer and use it in GitHub Desktop.
Save ucnv/192627 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "usage: $0 ʅ(‾ρ◝)ʃ"
exit 0
fi
for i in {1..20}; do
wget http://fuba.moaningnerds.org/unicodemoticon/?$1 -q -O $(printf "%02d" $i).png
done
convert -loop 0 -delay 10 *.png out.gif
#rm *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment