inpurrection.sh 297 B

123456
  1. #!/bin/sh
  2. image=$(curl --silent -L "http://fluffy-kittens.tumblr.com/random" | grep "og:image" | sed "s/\/>/\/>\n/g" | grep "og:image" | rev | cut -d '"' -f 2 | rev | head -n 1)
  3. echo $image
  4. wget --quiet "$image"
  5. toot -i="$(basename $image)" "#inPURRection #gattini #kittens"
  6. rm $(basename $image)