Files
apps/scripts/tweet.sh

77 lines
817 B
Bash
Executable File

#!/bin/bash
lescript=`basename $0 .sh`
flag=$TMP_PATH/bot_$lescript.flag
#
# TOOLS
#
function debug
{
if [ -f $FLAG_PATH/debug ]
then
echo $1
fi
}
function sortie
{
if [ -f $flag ]
then
rm -f $flag
fi
exit $1
}
function succes
{
debug "SUCCES"
sortie 0
}
function echec
{
debug "ECHEC"
sortie 1
}
#
# TEST DU FLAG
#
if [ -f $flag ]
then
debug "$0 is already running !"
exit 1
fi
touch $flag
#
# PARAMETRES PAR FICHIER FLAGS
#
if [ -f $FLAG_PATH/no_tweet ]
then
debug "No Tweet"
echec
fi
#
# TWEET
#
TWEET=8
if [ $((MINUTE % $TWEET)) -eq 0 ]
then
debug "send a TWEET"
# tweet R. Topisto
$APPS_PATH/twitter/twitterbot/robot.sh 2>&1
# "auto likes" from Topisto
$APPS_PATH/twitter/likebot/robot.sh 2>&1
else
debug "no TWEET"
fi
#
# SORTIE AVEC SUCCES
#
succes