1
0
Fork 0
MastodonMegafono/examples/autobuongiorno.sh

16 lines
215 B
Bash
Raw Normal View History

2018-04-10 14:10:53 +02:00
#!/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