diff --git a/examples/autobuongiorno.sh b/examples/autobuongiorno.sh new file mode 100644 index 0000000..dc3b136 --- /dev/null +++ b/examples/autobuongiorno.sh @@ -0,0 +1,15 @@ +#!/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 diff --git a/examples/autobuongiorno.sh~ b/examples/autobuongiorno.sh~ new file mode 100644 index 0000000..cc151bc --- /dev/null +++ b/examples/autobuongiorno.sh~ @@ -0,0 +1,13 @@ +#!/bin/sh + +# WTFPL! + +pic=$(immaginibuongiorno) + +if [ "$pic" = "" ] +then + echo "notfound" + pic=$(immaginibuongiorno --random) +fi +wget -O /tmp/buongiorno "$pic" +toot -i="/tmp/buongiorno" diff --git a/examples/buongiorno b/examples/buongiorno new file mode 100644 index 0000000..764d694 Binary files /dev/null and b/examples/buongiorno differ