#!/bin/sh # WTFPL! tmpfile="/tmp/buongiorno" pic=$(immaginibuongiorno) if [ "$pic" = "" ] then echo "notfound" pic=$(immaginibuongiorno --random) fi wget -O $tmpfile "$pic" toot -i="$tmpfile" rm $tmpfile