14 lines
191 B
Bash
14 lines
191 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# WTFPL!
|
||
|
|
||
|
pic=$(immaginibuongiorno)
|
||
|
|
||
|
if [ "$pic" = "" ]
|
||
|
then
|
||
|
echo "notfound"
|
||
|
pic=$(immaginibuongiorno --random)
|
||
|
fi
|
||
|
wget -O /tmp/buongiorno "$pic"
|
||
|
toot -i="/tmp/buongiorno"
|