forked from encrypt/toot
add example
This commit is contained in:
parent
145eef8632
commit
184fc4481a
3 changed files with 28 additions and 0 deletions
15
examples/autobuongiorno.sh
Normal file
15
examples/autobuongiorno.sh
Normal file
|
@ -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
|
13
examples/autobuongiorno.sh~
Normal file
13
examples/autobuongiorno.sh~
Normal file
|
@ -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"
|
BIN
examples/buongiorno
Normal file
BIN
examples/buongiorno
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
Reference in a new issue