5
0
Fork 1
forked from encrypt/toot
MastodonMegafono/examples/autobuongiorno.sh
2018-04-10 12:10:53 +00:00

15 lines
215 B
Bash

#!/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