Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

76 linhas
817 B

#!/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=3
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